Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +103 -45
requirements.txt
CHANGED
@@ -1,57 +1,115 @@
|
|
1 |
-
# --- Core runtime / UI
|
2 |
-
gradio
|
3 |
-
fastapi
|
4 |
-
uvicorn
|
5 |
-
numpy
|
6 |
-
requests
|
7 |
-
websocket-client
|
8 |
-
beautifulsoup4
|
9 |
-
tqdm
|
10 |
-
cryptography
|
11 |
-
python-multipart
|
12 |
|
13 |
# --- PyTorch stack ---
|
14 |
-
torch
|
15 |
-
torchvision
|
16 |
-
torchaudio
|
17 |
|
18 |
# --- HF ecosystem / modeling ---
|
19 |
-
transformers
|
20 |
-
tokenizers
|
21 |
-
diffusers
|
22 |
-
accelerate
|
23 |
-
safetensors
|
24 |
-
sentencepiece
|
25 |
-
scipy
|
26 |
-
timm
|
27 |
-
faiss-cpu
|
28 |
-
networkx
|
29 |
|
30 |
# --- Audio ---
|
31 |
-
librosa
|
32 |
-
numba
|
33 |
-
llvmlite
|
34 |
-
soundfile
|
35 |
-
SpeechRecognition
|
36 |
-
piper-tts
|
37 |
-
webrtcvad
|
38 |
-
speechbrain
|
39 |
-
TTS
|
40 |
|
41 |
# --- Image / Video ---
|
42 |
-
Pillow
|
43 |
-
imageio
|
44 |
-
imageio-ffmpeg
|
45 |
-
moviepy
|
46 |
-
opencv-python-headless
|
47 |
-
pytesseract
|
48 |
-
emoji
|
49 |
|
50 |
# --- Documents ---
|
51 |
-
PyPDF2
|
52 |
-
python-docx
|
53 |
-
openpyxl
|
54 |
-
pandas
|
55 |
|
56 |
# --- Math / Code ---
|
57 |
-
pygments
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# --- Core runtime / UI ---
|
2 |
+
gradio==4.36.1
|
3 |
+
fastapi==0.112.0
|
4 |
+
uvicorn==0.30.6
|
5 |
+
numpy==1.26.4
|
6 |
+
requests==2.32.3
|
7 |
+
websocket-client==1.8.0
|
8 |
+
beautifulsoup4==4.13.3
|
9 |
+
tqdm==4.67.1
|
10 |
+
cryptography==42.0.8
|
11 |
+
python-multipart==0.0.9
|
12 |
|
13 |
# --- PyTorch stack ---
|
14 |
+
torch==2.4.0
|
15 |
+
torchvision==0.19.0
|
16 |
+
torchaudio==2.4.0
|
17 |
|
18 |
# --- HF ecosystem / modeling ---
|
19 |
+
transformers==4.55.1
|
20 |
+
tokenizers==0.21.2
|
21 |
+
diffusers==0.31.0
|
22 |
+
accelerate==1.10.0
|
23 |
+
safetensors==0.4.5
|
24 |
+
sentencepiece==0.2.0
|
25 |
+
scipy==1.11.4
|
26 |
+
timm==1.0.9
|
27 |
+
faiss-cpu==1.9.0
|
28 |
+
networkx==3.4.2
|
29 |
|
30 |
# --- Audio ---
|
31 |
+
librosa==0.10.2.post1
|
32 |
+
numba==0.59.1
|
33 |
+
llvmlite==0.42.0
|
34 |
+
soundfile==0.12.1
|
35 |
+
SpeechRecognition==3.10.4
|
36 |
+
piper-tts==1.2.0
|
37 |
+
webrtcvad==2.0.10
|
38 |
+
speechbrain==0.5.15
|
39 |
+
TTS==0.22.0
|
40 |
|
41 |
# --- Image / Video ---
|
42 |
+
Pillow==10.4.0
|
43 |
+
imageio==2.36.0
|
44 |
+
imageio-ffmpeg==0.4.9
|
45 |
+
moviepy==2.1.1
|
46 |
+
opencv-python-headless==4.10.0.84
|
47 |
+
pytesseract==0.3.13
|
48 |
+
emoji==2.12.1
|
49 |
|
50 |
# --- Documents ---
|
51 |
+
PyPDF2==3.0.1
|
52 |
+
python-docx==1.1.2
|
53 |
+
openpyxl==3.1.5
|
54 |
+
pandas==1.5.3 # compatible with both TTS and gradio
|
55 |
|
56 |
# --- Math / Code ---
|
57 |
+
pygments==2.18.0
|
58 |
+
|
59 |
+
# --- Core runtime / UI ---
|
60 |
+
gradio>=4.36,<5
|
61 |
+
fastapi>=0.112,<1
|
62 |
+
uvicorn>=0.30,<1
|
63 |
+
numpy>=1.22,<1.27
|
64 |
+
requests>=2.32,<3
|
65 |
+
websocket-client>=1.8,<2
|
66 |
+
beautifulsoup4>=4.13,<5
|
67 |
+
tqdm>=4.67,<5
|
68 |
+
cryptography>=42,<43
|
69 |
+
python-multipart>=0.0.9,<0.1
|
70 |
+
|
71 |
+
# --- PyTorch stack ---
|
72 |
+
torch>=2.4,<3
|
73 |
+
torchvision>=0.19,<1
|
74 |
+
torchaudio>=2.4,<3
|
75 |
+
|
76 |
+
# --- HF ecosystem / modeling ---
|
77 |
+
transformers>=4.44,<5
|
78 |
+
tokenizers>=0.19,<0.22
|
79 |
+
diffusers>=0.31,<1
|
80 |
+
accelerate>=1.10,<2
|
81 |
+
safetensors>=0.4,<0.5
|
82 |
+
sentencepiece>=0.2,<0.3
|
83 |
+
scipy>=1.11,<1.28
|
84 |
+
timm>=1.0.9,<2
|
85 |
+
faiss-cpu>=1.7,<2
|
86 |
+
networkx>=3.4,<4
|
87 |
+
|
88 |
+
# --- Audio ---
|
89 |
+
librosa>=0.10,<0.11
|
90 |
+
numba>=0.59,<0.60
|
91 |
+
llvmlite>=0.42,<0.43
|
92 |
+
soundfile>=0.12,<0.13
|
93 |
+
SpeechRecognition>=3.10,<4
|
94 |
+
piper-tts>=1.2,<2
|
95 |
+
webrtcvad>=2.0.10,<3
|
96 |
+
speechbrain>=0.5.15,<0.6
|
97 |
+
TTS>=0.22,<0.23 # Must stay <0.23 for numpy/pandas compatibility
|
98 |
+
|
99 |
+
# --- Image / Video ---
|
100 |
+
Pillow>=10.4,<11
|
101 |
+
imageio>=2.36,<3
|
102 |
+
imageio-ffmpeg>=0.4.9,<0.5
|
103 |
+
moviepy>=2.1,<3
|
104 |
+
opencv-python-headless>=4.10,<5
|
105 |
+
pytesseract>=0.3.13,<0.4
|
106 |
+
emoji>=2.12,<3
|
107 |
+
|
108 |
+
# --- Documents ---
|
109 |
+
PyPDF2>=3.0.1,<4
|
110 |
+
python-docx>=1.1,<1.2
|
111 |
+
openpyxl>=3.1,<4
|
112 |
+
pandas>=1.5,<2 # <2 for TTS compatibility
|
113 |
+
|
114 |
+
# --- Math / Code ---
|
115 |
+
pygments>=2.18,<3
|