DerYur commited on
Commit
ae58c73
·
verified ·
1 Parent(s): 04eca3f

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +35 -0
requirements.txt ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core
2
+ openai==1.68.2
3
+ elevenlabs==1.54.0
4
+ python-dotenv==1.1.0
5
+
6
+ # UI
7
+ streamlit==1.35.0 # ✅ Explicitly pinned; tested with latest layout features
8
+
9
+ # Voice + Audio
10
+ sounddevice==0.5.1
11
+ soundfile==0.13.1
12
+ pydub==0.25.1
13
+ faster-whisper==1.1.1
14
+
15
+ # Speech & Transcription
16
+ ctranslate2==4.5.0
17
+ librosa==0.11.0
18
+ torchaudio==2.6.0
19
+ torch==2.6.0
20
+
21
+ # Data & Logging
22
+ numpy==1.24.4
23
+ pandas==1.5.3
24
+ openpyxl==3.1.2
25
+ tqdm==4.67.1
26
+
27
+ # WebSocket + API
28
+ fastapi==0.115.12
29
+ uvicorn==0.34.0
30
+ httpx==0.28.1
31
+ websockets==11.0.3
32
+
33
+ # Optional
34
+ scikit-learn==1.6.1
35
+ huggingface_hub>=0.22.0