pengdaqian commited on
Commit
434adea
·
1 Parent(s): 1b80ddd
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -335,4 +335,9 @@ with app:
335
  vc_search.click(auto_search, [vc_input2], [vc_output1, vc_input3])
336
  vc_submit.click(svc_main, [sid, vc_input3], [vc_output1, vc_output2])
337
 
338
- app.launch()
 
 
 
 
 
 
335
  vc_search.click(auto_search, [vc_input2], [vc_output1, vc_input3])
336
  vc_submit.click(svc_main, [sid, vc_input3], [vc_output1, vc_output2])
337
 
338
+ app.queue(
339
+ concurrency_count=2,
340
+ max_size=30
341
+ ).launch(
342
+ max_threads=150
343
+ )