Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -109,6 +109,6 @@ with gr.Blocks(css=css) as demo:
|
|
| 109 |
with gr.Row():
|
| 110 |
gallery = gr.Image(show_label=False)
|
| 111 |
|
| 112 |
-
button.click(api_gradio, inputs=[prompt, negative, style, width, height], outputs=gallery)
|
| 113 |
|
| 114 |
-
demo.queue(max_size=
|
|
|
|
| 109 |
with gr.Row():
|
| 110 |
gallery = gr.Image(show_label=False)
|
| 111 |
|
| 112 |
+
button.click(api_gradio, inputs=[prompt, negative, style, width, height], outputs=gallery, queue=True, concurrency_limit=250)
|
| 113 |
|
| 114 |
+
demo.queue(max_size=250).launch(show_api=False, share=False)
|