Spaces:
Paused
Paused
Commit
โข
54b4948
1
Parent(s):
f533c9b
Increase concurrency count (#1)
Browse files- Increase concurrency count (d626912c22fdb919f4b40c1dadf920d4a42e3634)
Co-authored-by: Freddy Boulton <[email protected]>
app.py
CHANGED
@@ -53,4 +53,4 @@ with gr.Blocks() as demo:
|
|
53 |
music_output = gr.Audio(label="Result", type="filepath")
|
54 |
generate.click(get_prompts, inputs=[input_img], outputs=[music_output])
|
55 |
|
56 |
-
demo.queue(max_size=32).launch()
|
|
|
53 |
music_output = gr.Audio(label="Result", type="filepath")
|
54 |
generate.click(get_prompts, inputs=[input_img], outputs=[music_output])
|
55 |
|
56 |
+
demo.queue(max_size=32, concurrency_count=20).launch()
|