Spaces:
Runtime error
Runtime error
Create requirements.txt
Browse files- requirements.txt +18 -0
requirements.txt
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
fastrtc>=0.2.0
|
2 |
+
python-deepseek>=0.1.0 # Or the correct package name for DeepSeek API
|
3 |
+
elevenlabs>=0.2.24
|
4 |
+
fastapi>=0.103.1
|
5 |
+
uvicorn>=0.23.2
|
6 |
+
python-dotenv>=1.0.0
|
7 |
+
numpy>=1.24.0
|
8 |
+
websockets>=11.0.3
|
9 |
+
httpx>=0.24.1
|
10 |
+
pydantic>=2.0.0
|
11 |
+
streamlit>=1.26.0 # If using Streamlit UI
|
12 |
+
gradio>=3.40.0 # If using Gradio UI
|
13 |
+
whisperx>=3.0.0 # For speech recognition
|
14 |
+
soundfile>=0.12.1 # Audio processing
|
15 |
+
pydub>=0.25.1 # Audio format handling
|
16 |
+
ffmpeg-python>=0.2.0 # For media conversions
|
17 |
+
torch>=2.0.0 # Likely needed for AI models
|
18 |
+
transformers>=4.33.0 # If using Hugging Face models
|