Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -76,7 +76,10 @@ with gr.Blocks(css=css) as demo:
|
|
76 |
max_lines=1,
|
77 |
placeholder="Enter your negative prompt",
|
78 |
)
|
79 |
-
|
|
|
|
|
|
|
80 |
with gr.Row():
|
81 |
seed = gr.Number(
|
82 |
label="Seed",
|
@@ -121,8 +124,7 @@ with gr.Blocks(css=css) as demo:
|
|
121 |
value=1024, # Replace with defaults that work for your model
|
122 |
)
|
123 |
|
124 |
-
|
125 |
-
result = gr.Image(label="Result", show_label=False)
|
126 |
|
127 |
gr.on(
|
128 |
triggers=[run_button.click],
|
|
|
76 |
max_lines=1,
|
77 |
placeholder="Enter your negative prompt",
|
78 |
)
|
79 |
+
|
80 |
+
run_button = gr.Button("Run", scale=0, variant="primary")
|
81 |
+
result = gr.Image(label="Result", show_label=False)
|
82 |
+
|
83 |
with gr.Row():
|
84 |
seed = gr.Number(
|
85 |
label="Seed",
|
|
|
124 |
value=1024, # Replace with defaults that work for your model
|
125 |
)
|
126 |
|
127 |
+
|
|
|
128 |
|
129 |
gr.on(
|
130 |
triggers=[run_button.click],
|