BaoKhuong commited on
Commit
ed1d9e5
·
verified ·
1 Parent(s): 76d55bc

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -300,8 +300,8 @@ Two tabs: Price Prediction (Finnhub with Alpha Vantage fallback) and Equity Rese
300
 
301
  btn2.click(on_report, inputs=[symbol2, temp2, max_new2], outputs=out2, show_progress=True)
302
 
303
- # Enable queue so users see pending/running state
304
- demo.queue(concurrency_count=1, max_size=8)
305
  return demo
306
 
307
 
 
300
 
301
  btn2.click(on_report, inputs=[symbol2, temp2, max_new2], outputs=out2, show_progress=True)
302
 
303
+ # Enable queue with default settings for current Gradio version
304
+ demo.queue()
305
  return demo
306
 
307