Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
@@ -118,7 +118,8 @@ stream = Stream(
|
|
118 |
additional_outputs=[chatbot],
|
119 |
additional_outputs_handler=update_chatbot,
|
120 |
rtc_configuration=get_twilio_turn_credentials() if get_space() else None,
|
121 |
-
concurrency_limit=
|
|
|
122 |
)
|
123 |
|
124 |
app = FastAPI()
|
|
|
118 |
additional_outputs=[chatbot],
|
119 |
additional_outputs_handler=update_chatbot,
|
120 |
rtc_configuration=get_twilio_turn_credentials() if get_space() else None,
|
121 |
+
concurrency_limit=5 if get_space() else None,
|
122 |
+
time_limit=90 if get_space() else None,
|
123 |
)
|
124 |
|
125 |
app = FastAPI()
|