Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -77,7 +77,8 @@ stream = Stream(
|
|
| 77 |
additional_inputs=[chatbot],
|
| 78 |
additional_outputs=[chatbot],
|
| 79 |
rtc_configuration=get_twilio_turn_credentials() if get_space() else None,
|
| 80 |
-
concurrency_limit=
|
|
|
|
| 81 |
ui_args={"title": "LLM Voice Chat (Powered by Groq, ElevenLabs, and WebRTC ⚡️)"},
|
| 82 |
)
|
| 83 |
|
|
|
|
| 77 |
additional_inputs=[chatbot],
|
| 78 |
additional_outputs=[chatbot],
|
| 79 |
rtc_configuration=get_twilio_turn_credentials() if get_space() else None,
|
| 80 |
+
concurrency_limit=5 if get_space() else None,
|
| 81 |
+
time_limit=90 if get_space() else None,
|
| 82 |
ui_args={"title": "LLM Voice Chat (Powered by Groq, ElevenLabs, and WebRTC ⚡️)"},
|
| 83 |
)
|
| 84 |
|