Respair commited on
Commit
1e7ed96
·
verified ·
1 Parent(s): fafd980

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -167,6 +167,10 @@ with gr.Blocks(theme="Respair/Shiki@10.1.0", css=css) as demo:
167
  )
168
  with gr.Row(equal_height=False):
169
  with gr.Accordion("----------------------------------⭐ 🛠️ ⭐", open=False):
 
 
 
 
170
 
171
  gr.Markdown('<h3 style="color: #FFD700;">Style / CFG Parameters</h3>')
172
 
@@ -199,12 +203,9 @@ with gr.Blocks(theme="Respair/Shiki@10.1.0", css=css) as demo:
199
  label="DRY Multiplier (0 = off)", minimum=0.0, maximum=5.0, value=0.8, step=0.1,
200
  )
201
 
202
- gr.Markdown('<h3 style="color: #FFD700;">Other</h3>')
203
-
204
- seed_slider = gr.Slider(
205
- label="Seed (-1 for random)", minimum=-1, maximum=2700000000, value=2700000000, step=1,
206
- )
207
 
 
208
  with gr.Column(scale=1):
209
  generate_button = gr.Button("🎤 Generate", variant="primary", size="lg")
210
 
 
167
  )
168
  with gr.Row(equal_height=False):
169
  with gr.Accordion("----------------------------------⭐ 🛠️ ⭐", open=False):
170
+
171
+ seed_slider = gr.Slider(
172
+ label="Seed (-1 for random)", minimum=-1, maximum=2700000000, value=2700000000, step=1,
173
+ )
174
 
175
  gr.Markdown('<h3 style="color: #FFD700;">Style / CFG Parameters</h3>')
176
 
 
203
  label="DRY Multiplier (0 = off)", minimum=0.0, maximum=5.0, value=0.8, step=0.1,
204
  )
205
 
206
+ # gr.Markdown('<h3 style="color: #FFD700;">Other</h3>')
 
 
 
 
207
 
208
+
209
  with gr.Column(scale=1):
210
  generate_button = gr.Button("🎤 Generate", variant="primary", size="lg")
211