Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -165,11 +165,11 @@ with gr.Blocks(css=CSS, js=JS, theme="soft") as demo:
|
|
165 |
)
|
166 |
|
167 |
prompt.submit(fn=generate_image,
|
168 |
-
inputs=[prompt, negative, width, height, scale, steps,
|
169 |
outputs=img,
|
170 |
)
|
171 |
submit.click(fn=generate_image,
|
172 |
-
inputs=[prompt, negative, width, height, scale, steps,
|
173 |
outputs=img,
|
174 |
)
|
175 |
|
|
|
165 |
)
|
166 |
|
167 |
prompt.submit(fn=generate_image,
|
168 |
+
inputs=[prompt, negative, width, height, scale, steps, seed],
|
169 |
outputs=img,
|
170 |
)
|
171 |
submit.click(fn=generate_image,
|
172 |
+
inputs=[prompt, negative, width, height, scale, steps, seed],
|
173 |
outputs=img,
|
174 |
)
|
175 |
|