Spaces:
Runtime error
Runtime error
added max size for a queue
Browse files
app.py
CHANGED
@@ -123,4 +123,4 @@ with gr.Blocks() as demo:
|
|
123 |
with gr.Tab("Batch"):
|
124 |
gr.ChatInterface(predict_batch, title=title, description=description, css=css, examples=examples, cache_examples=True)
|
125 |
|
126 |
-
demo.queue(concurrency_count=75).launch(debug=True)
|
|
|
123 |
with gr.Tab("Batch"):
|
124 |
gr.ChatInterface(predict_batch, title=title, description=description, css=css, examples=examples, cache_examples=True)
|
125 |
|
126 |
+
demo.queue(concurrency_count=75, max_size=100).launch(debug=True)
|