Update app.py
Browse files
app.py
CHANGED
@@ -269,4 +269,8 @@ with gr.Blocks(
|
|
269 |
create_about_tab()
|
270 |
|
271 |
if __name__ == "__main__":
|
272 |
-
gr_app.
|
|
|
|
|
|
|
|
|
|
269 |
create_about_tab()
|
270 |
|
271 |
if __name__ == "__main__":
|
272 |
+
gr_app.queue(
|
273 |
+
default_concurrency_limit=10,
|
274 |
+
status_update_rate=10,
|
275 |
+
api_open=False,
|
276 |
+
).launch(server_port=7860, max_threads=200, show_api=False)
|