Spaces:
Runtime error
Runtime error
Commit
•
2b8ce63
1
Parent(s):
64f73c7
Increase the concurrent limit. This Space is running on ZeroGPU so it can be easily scaled out. (#1)
Browse files- Increase the concurrent limit. This Space is running on ZeroGPU so it can be easily scaled out. (28fde3848cbe48717f7bd9c484b7a09da1d67295)
Co-authored-by: Tiezhen WANG <[email protected]>
opensora/serve/gradio_web_server.py
CHANGED
@@ -124,6 +124,6 @@ if __name__ == '__main__':
|
|
124 |
Textbox(label="model info"),
|
125 |
gr.Slider(label='seed')],
|
126 |
title=title_markdown, description=DESCRIPTION, theme=gr.themes.Default(), css=block_css,
|
127 |
-
examples=examples, cache_examples=False
|
128 |
)
|
129 |
demo.launch()
|
|
|
124 |
Textbox(label="model info"),
|
125 |
gr.Slider(label='seed')],
|
126 |
title=title_markdown, description=DESCRIPTION, theme=gr.themes.Default(), css=block_css,
|
127 |
+
examples=examples, cache_examples=False, concurrency_limit = 10
|
128 |
)
|
129 |
demo.launch()
|