Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -111,7 +111,8 @@ with gr.Blocks(css=css) as demo:
|
|
111 |
submit_button.click(
|
112 |
fn=ask_openai_with_image,
|
113 |
inputs=[instructions, image_input],
|
114 |
-
outputs=[output_markdown]
|
|
|
115 |
)
|
116 |
|
117 |
demo.launch()
|
|
|
111 |
submit_button.click(
|
112 |
fn=ask_openai_with_image,
|
113 |
inputs=[instructions, image_input],
|
114 |
+
outputs=[output_markdown],
|
115 |
+
concurrency_limit=24
|
116 |
)
|
117 |
|
118 |
demo.launch()
|