Princeaka commited on
Commit
5448e1c
·
verified ·
1 Parent(s): 6ca2602

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +28 -25
requirements.txt CHANGED
@@ -1,38 +1,41 @@
1
- # UI
2
- gradio>=5.42.0
3
- fastapi>=0.95.0
4
 
5
- # Core ML
6
  torch
7
- transformers>=4.30.0
8
- diffusers>=0.19.0
9
- accelerate>=0.21.0
 
 
 
 
10
  safetensors
11
- huggingface-hub>=0.13.4
12
  sentencepiece
13
- tokenizers
 
14
 
15
- # Audio / speech
16
- librosa>=0.9.2
 
 
17
  soundfile
18
- SpeechRecognition
19
  gTTS
 
20
  webrtcvad
21
 
22
- # Images & video
23
  Pillow
24
- imageio==2.31.1
25
- imageio-ffmpeg==0.4.8
26
- moviepy==1.0.3
27
  opencv-python-headless
28
 
29
- # Documents / files
30
- PyMuPDF
31
- python-docx
32
-
33
- # Utilities
34
  langdetect
35
- numpy
36
- scipy
37
- proglog
38
- decorator
 
1
+ # --- Core runtime / UI ---
2
+ gradio>=4.36.0
 
3
 
4
+ # --- PyTorch stack (CPU by default; switch Space to GPU for SD speed) ---
5
  torch
6
+ torchvision
7
+ torchaudio
8
+
9
+ # --- HF ecosystem / modeling ---
10
+ transformers>=4.41.0
11
+ diffusers>=0.28.0
12
+ accelerate
13
  safetensors
14
+ huggingface_hub>=0.23.0
15
  sentencepiece
16
+ timm
17
+ scipy
18
 
19
+ # --- Audio ---
20
+ librosa>=0.10.2
21
+ numba
22
+ llvmlite
23
  soundfile
 
24
  gTTS
25
+ SpeechRecognition
26
  webrtcvad
27
 
28
+ # --- Image / Video ---
29
  Pillow
30
+ imageio
31
+ imageio-ffmpeg
32
+ moviepy
33
  opencv-python-headless
34
 
35
+ # --- Documents ---
36
+ PyMuPDF # provides the 'fitz' import
37
+ python-docx # you use `import docx` for .docx support
 
 
38
  langdetect
39
+
40
+ # --- Misc / helpers ---
41
+ python-multipart