akpande2 commited on
Commit
b0160dc
·
verified ·
1 Parent(s): b63615e

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +16 -18
requirements.txt CHANGED
@@ -1,32 +1,30 @@
1
- # Enhanced Public Speaking Coach - Requirements with LLM & TTS
2
  # Install with: pip install -r requirements.txt
3
 
4
  # Core ML/AI
5
- torch>=2.0.0
6
- transformers>=4.30.0
7
-
8
-
9
  sentence-transformers==2.2.2
10
 
11
  # Audio Processing
12
- openai-whisper>=20230918
13
- librosa>=0.10.0
14
- soundfile>=0.12.0
15
 
16
  # Scientific Computing
17
- numpy>=1.24.0
18
- scipy>=1.10.0
19
 
20
  # NLP & Text Analysis
21
- textstat>=0.7.3
22
 
23
- # Text-to-Speech (Optional but recommended)
24
- TTS>=0.22.0
25
 
26
  # Web Server
27
- fastapi>=0.104.0
28
- uvicorn>=0.24.0
29
- python-multipart>=0.0.6
30
 
31
- # Optional but recommended
32
- accelerate>=0.20.0 # For faster model loading
 
1
+ # Enhanced Public Speaking Coach - Pinned Versions
2
  # Install with: pip install -r requirements.txt
3
 
4
  # Core ML/AI
5
+ torch==2.0.1
6
+ transformers==4.30.2
 
 
7
  sentence-transformers==2.2.2
8
 
9
  # Audio Processing
10
+ openai-whisper==20231117
11
+ librosa==0.10.1
12
+ soundfile==0.12.1
13
 
14
  # Scientific Computing
15
+ numpy==1.24.3
16
+ scipy==1.10.1
17
 
18
  # NLP & Text Analysis
19
+ textstat==0.7.3
20
 
21
+ # Text-to-Speech
22
+ TTS==0.22.0
23
 
24
  # Web Server
25
+ fastapi==0.104.1
26
+ uvicorn==0.24.0
27
+ python-multipart==0.0.6
28
 
29
+ # Utilities
30
+ accelerate==0.20.3