Spaces:
Runtime error
Runtime error
Set the max queue size
Browse files
app.py
CHANGED
|
@@ -75,4 +75,4 @@ with gr.Blocks(css='style.css') as demo:
|
|
| 75 |
prompt.submit(fn=generate, inputs=inputs, outputs=result)
|
| 76 |
run_button.click(fn=generate, inputs=inputs, outputs=result)
|
| 77 |
|
| 78 |
-
demo.queue(api_open=False).launch()
|
|
|
|
| 75 |
prompt.submit(fn=generate, inputs=inputs, outputs=result)
|
| 76 |
run_button.click(fn=generate, inputs=inputs, outputs=result)
|
| 77 |
|
| 78 |
+
demo.queue(api_open=False, max_size=15).launch()
|