Update app.py
Browse files
app.py
CHANGED
|
@@ -118,7 +118,7 @@ app = gr.Interface(
|
|
| 118 |
outputs=outputs,
|
| 119 |
title=title,
|
| 120 |
description=model_description,
|
|
|
|
| 121 |
allow_flagging="never",
|
| 122 |
)
|
| 123 |
-
app.launch(share=True)
|
| 124 |
-
|
|
|
|
| 118 |
outputs=outputs,
|
| 119 |
title=title,
|
| 120 |
description=model_description,
|
| 121 |
+
concurrency_limit=2,
|
| 122 |
allow_flagging="never",
|
| 123 |
)
|
| 124 |
+
app.launch(share=True)
|
|
|