Update app.py
Browse filesLower concurrency limitations.
app.py
CHANGED
|
@@ -119,7 +119,7 @@ demo = gr.ChatInterface(
|
|
| 119 |
chatbot=chatbot,
|
| 120 |
title="🪷",
|
| 121 |
description="Mixtral-8x7B-Instruct-v0.1",
|
| 122 |
-
concurrency_limit=
|
| 123 |
)
|
| 124 |
|
| 125 |
demo.queue().launch()
|
|
|
|
| 119 |
chatbot=chatbot,
|
| 120 |
title="🪷",
|
| 121 |
description="Mixtral-8x7B-Instruct-v0.1",
|
| 122 |
+
concurrency_limit=20,
|
| 123 |
)
|
| 124 |
|
| 125 |
demo.queue().launch()
|