montyanderson commited on
Commit
9e61afc
1 Parent(s): ab5fed1

limit concurrency to 1

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -166,4 +166,4 @@ with gr.Blocks(css=css) as demo:
166
 
167
  text_button.click(flip_text, inputs=[prompt, negative_prompt, model, steps, sampler, cfg_scale, width, height, seed], outputs=image_output)
168
 
169
- demo.queue(default_concurrency_limit=4, max_size=32, api_open=False).launch(max_threads=128)
 
166
 
167
  text_button.click(flip_text, inputs=[prompt, negative_prompt, model, steps, sampler, cfg_scale, width, height, seed], outputs=image_output)
168
 
169
+ demo.queue(default_concurrency_limit=1, max_size=32, api_open=False).launch(max_threads=128)