Princeaka commited on
Commit
79f4568
·
verified ·
1 Parent(s): 02ab8b4

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +23 -12
requirements.txt CHANGED
@@ -1,26 +1,37 @@
1
- # Core API
2
  fastapi==0.103.1
3
  uvicorn==0.23.2
4
  python-multipart==0.0.6
 
5
 
6
- # AI/ML
7
- torch==2.0.1 --extra-index-url https://download.pytorch.org/whl/cpu
8
- transformers==4.30.0
9
- diffusers==0.19.3 # ← Downgraded for compatibility
10
- huggingface-hub==0.16.4 # ← Specific working version
 
11
 
12
- # Audio Processing
13
  soundfile==0.12.1
14
  librosa==0.10.0
15
  gTTS==2.3.2
16
- speechrecognition==3.10.0
 
17
 
18
- # Image/Video
19
  Pillow==10.0.0
20
  imageio[ffmpeg]==2.31.1
 
21
  moviepy==1.0.3
 
22
 
23
- # Utilities
24
  langdetect==1.0.9
25
- python-dotenv==1.0.0
26
- pymupdf==1.22.5
 
 
 
 
 
 
 
1
+ # ===== CORE API =====
2
  fastapi==0.103.1
3
  uvicorn==0.23.2
4
  python-multipart==0.0.6
5
+ python-dotenv==1.0.0
6
 
7
+ # ===== AI/ML (VERSION-LOCKED) =====
8
+ torch==1.13.1 --extra-index-url https://download.pytorch.org/whl/cpu
9
+ transformers==4.28.1
10
+ diffusers==0.18.2
11
+ huggingface-hub==0.13.4
12
+ accelerate==0.18.0
13
 
14
+ # ===== AUDIO PROCESSING =====
15
  soundfile==0.12.1
16
  librosa==0.10.0
17
  gTTS==2.3.2
18
+ SpeechRecognition==3.10.0
19
+ pydub==0.25.1
20
 
21
+ # ===== IMAGE/VIDEO =====
22
  Pillow==10.0.0
23
  imageio[ffmpeg]==2.31.1
24
+ imageio-ffmpeg==0.4.8
25
  moviepy==1.0.3
26
+ opencv-python-headless==4.7.0.72
27
 
28
+ # ===== UTILITIES =====
29
  langdetect==1.0.9
30
+ pymupdf==1.22.5
31
+ numpy==1.24.3
32
+ tqdm==4.65.0
33
+ requests==2.31.0
34
+
35
+ # ===== OPTIONAL (REMOVE IF NOT NEEDED) =====
36
+ # pyttsx3==2.90 (alternative TTS)
37
+ # scipy==1.10.1 (for advanced audio)