SemanticTypography commited on
Commit
1f92853
·
verified ·
1 Parent(s): d0d36e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -326,7 +326,6 @@ with gr.Blocks() as demo:
326
  500
327
  ],
328
  ]
329
- demo.queue(max_size=10, concurrency_count=2)
330
  gr.Examples(examples=examples,
331
  inputs=[
332
  semantic_concept,
@@ -359,7 +358,7 @@ with gr.Blocks() as demo:
359
  result2
360
  ]
361
 
362
- run.click(fn=run_main_app, inputs=inputs, outputs=outputs, queue=True)
363
 
364
 
365
  demo.launch(share=False)
 
326
  500
327
  ],
328
  ]
 
329
  gr.Examples(examples=examples,
330
  inputs=[
331
  semantic_concept,
 
358
  result2
359
  ]
360
 
361
+ run.click(fn=run_main_app, inputs=inputs, outputs=outputs, concurrency_limit=2)
362
 
363
 
364
  demo.launch(share=False)