Increase the concurrent limit. This Space is running on ZeroGPU so it can be easily scaled out.

#1
by xianbao HF staff - opened
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()