osanseviero HF staff commited on
Commit
ce63bf0
1 Parent(s): c301c9e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -68,7 +68,7 @@ with gr.Blocks(css=css) as demo:
68
 
69
  # Button to trigger the report generation
70
  report_button = gr.Button("Generate Report")
71
- report_button.click(fn=get_report, inputs=namespace, outputs=output)
72
 
73
  # Launch the Gradio app
74
  demo.launch()
 
68
 
69
  # Button to trigger the report generation
70
  report_button = gr.Button("Generate Report")
71
+ report_button.click(fn=get_report, inputs=namespace, outputs=output, concurrency_limit=10)
72
 
73
  # Launch the Gradio app
74
  demo.launch()