saneowl commited on
Commit
2a08ae8
·
verified ·
1 Parent(s): 5d4125c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -170,6 +170,8 @@ with gr.Blocks(css=custom_css, title="Reka Flash 3") as demo:
170
  js=js
171
  )
172
 
173
- demo.queue(concurrent_count=1)
 
174
 
175
- demo.launch()
 
 
170
  js=js
171
  )
172
 
173
+ # Enable queuing without any parameters
174
+ demo.queue()
175
 
176
+ # Launch the demo with max_concurrency set to 1
177
+ demo.launch(max_concurrency=1)