Update requirements.txt
Browse files- requirements.txt +5 -7
requirements.txt
CHANGED
|
@@ -1,14 +1,12 @@
|
|
| 1 |
-
# Core server
|
| 2 |
fastapi==0.115.6
|
| 3 |
uvicorn==0.30.6
|
| 4 |
python-dotenv==1.0.1
|
| 5 |
|
| 6 |
-
# FastRTC + deps
|
| 7 |
-
fastrtc[vad,tts]==0.0.22
|
| 8 |
-
gradio==5.49.1
|
| 9 |
-
|
| 10 |
-
# Audio utils
|
| 11 |
numpy==2.1.3
|
| 12 |
|
| 13 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
google-genai==0.7.0
|
|
|
|
|
|
|
| 1 |
fastapi==0.115.6
|
| 2 |
uvicorn==0.30.6
|
| 3 |
python-dotenv==1.0.1
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
numpy==2.1.3
|
| 6 |
|
| 7 |
+
# Pin gradio in the same major line FastRTC expects
|
| 8 |
+
# (FastRTC imports wasm_utils from gradio; this avoids the mismatch.)
|
| 9 |
+
gradio==5.50.0
|
| 10 |
+
fastrtc[vad,tts]==0.0.22
|
| 11 |
+
|
| 12 |
google-genai==0.7.0
|