Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -275,33 +275,33 @@ with gr.Blocks(theme=theme, css="style.css") as demo:
|
|
275 |
visible=False,
|
276 |
)
|
277 |
with gr.Row():
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
with gr.Row():
|
306 |
width = gr.Slider(
|
307 |
label="Width",
|
|
|
275 |
visible=False,
|
276 |
)
|
277 |
with gr.Row():
|
278 |
+
negative_prompt = gr.Text(
|
279 |
+
placeholder="Input Negative Prompt",
|
280 |
+
label="Negative prompt",
|
281 |
+
max_lines=1,
|
282 |
+
visible=False,
|
283 |
+
)
|
284 |
+
prompt_2 = gr.Text(
|
285 |
+
placeholder="Input Prompt 2",
|
286 |
+
label="Prompt 2",
|
287 |
+
max_lines=1,
|
288 |
+
visible=False,
|
289 |
+
)
|
290 |
+
negative_prompt_2 = gr.Text(
|
291 |
+
placeholder="Input Negative Prompt 2",
|
292 |
+
label="Negative prompt 2",
|
293 |
+
max_lines=1,
|
294 |
+
visible=False,
|
295 |
+
)
|
296 |
+
|
297 |
+
seed = gr.Slider(
|
298 |
+
label="Seed",
|
299 |
+
minimum=0,
|
300 |
+
maximum=MAX_SEED,
|
301 |
+
step=1,
|
302 |
+
value=0,
|
303 |
+
)
|
304 |
+
randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
|
305 |
with gr.Row():
|
306 |
width = gr.Slider(
|
307 |
label="Width",
|