ysharma HF staff commited on
Commit
f98f623
1 Parent(s): 8f4c543

added max size for a queue

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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)