Spaces:
Runtime error
Runtime error
Commit
·
00ae9f0
1
Parent(s):
2a58849
Update app.py
Browse files
app.py
CHANGED
@@ -44,5 +44,5 @@ quality = gr.inputs.Radio(choices=['draft', 'normal', 'better'], label="Quality"
|
|
44 |
aspect = gr.inputs.Radio(choices=['square', 'widescreen','portrait'], label="Size")
|
45 |
|
46 |
|
47 |
-
iface = gr.Interface(generate, inputs=[prompt, quality, aspect], outputs=['image'],
|
48 |
-
iface.launch(debug=False)
|
|
|
44 |
aspect = gr.inputs.Radio(choices=['square', 'widescreen','portrait'], label="Size")
|
45 |
|
46 |
|
47 |
+
iface = gr.Interface(generate, inputs=[prompt, quality, aspect], outputs=['image'], live=False)
|
48 |
+
iface.launch(debug=False, enable_queue=True)
|