Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +8 -8
requirements.txt
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
-
#
|
2 |
fastapi==0.95.2
|
3 |
uvicorn==0.22.0
|
4 |
python-multipart==0.0.6
|
5 |
python-dotenv==1.0.0
|
6 |
|
7 |
-
# AI/ML
|
8 |
-
torch==1.13.1
|
9 |
transformers==4.28.1
|
10 |
diffusers==0.14.0
|
11 |
huggingface-hub==0.13.4
|
12 |
accelerate==0.18.0
|
13 |
sentencepiece==0.1.99
|
14 |
|
15 |
-
#
|
16 |
soundfile==0.12.1
|
17 |
librosa==0.9.2
|
18 |
gTTS==2.3.2
|
@@ -20,24 +20,24 @@ SpeechRecognition==3.8.1
|
|
20 |
pydub==0.25.1
|
21 |
webrtcvad==2.0.10
|
22 |
|
23 |
-
#
|
24 |
Pillow==9.5.0
|
25 |
imageio[ffmpeg]==2.31.1
|
26 |
imageio-ffmpeg==0.4.8
|
27 |
moviepy==1.0.3
|
28 |
opencv-python-headless==4.7.0.72
|
29 |
|
30 |
-
#
|
31 |
pymupdf==1.22.5
|
32 |
python-docx==1.1.0
|
33 |
pdf2image==1.17.0
|
34 |
|
35 |
-
#
|
36 |
numpy==1.23.5
|
37 |
tqdm==4.65.0
|
38 |
requests==2.28.2
|
39 |
langdetect==1.0.9
|
40 |
protobuf==3.20.3
|
41 |
|
42 |
-
#
|
43 |
gradio==3.28.3
|
|
|
1 |
+
# ===== CORE API =====
|
2 |
fastapi==0.95.2
|
3 |
uvicorn==0.22.0
|
4 |
python-multipart==0.0.6
|
5 |
python-dotenv==1.0.0
|
6 |
|
7 |
+
# ===== AI/ML (LOCKED VERSIONS) =====
|
8 |
+
torch==1.13.1 --extra-index-url https://download.pytorch.org/whl/cpu
|
9 |
transformers==4.28.1
|
10 |
diffusers==0.14.0
|
11 |
huggingface-hub==0.13.4
|
12 |
accelerate==0.18.0
|
13 |
sentencepiece==0.1.99
|
14 |
|
15 |
+
# ===== AUDIO PROCESSING =====
|
16 |
soundfile==0.12.1
|
17 |
librosa==0.9.2
|
18 |
gTTS==2.3.2
|
|
|
20 |
pydub==0.25.1
|
21 |
webrtcvad==2.0.10
|
22 |
|
23 |
+
# ===== IMAGE/VIDEO =====
|
24 |
Pillow==9.5.0
|
25 |
imageio[ffmpeg]==2.31.1
|
26 |
imageio-ffmpeg==0.4.8
|
27 |
moviepy==1.0.3
|
28 |
opencv-python-headless==4.7.0.72
|
29 |
|
30 |
+
# ===== DOCUMENT PROCESSING =====
|
31 |
pymupdf==1.22.5
|
32 |
python-docx==1.1.0
|
33 |
pdf2image==1.17.0
|
34 |
|
35 |
+
# ===== UTILITIES =====
|
36 |
numpy==1.23.5
|
37 |
tqdm==4.65.0
|
38 |
requests==2.28.2
|
39 |
langdetect==1.0.9
|
40 |
protobuf==3.20.3
|
41 |
|
42 |
+
# ===== GRADIO INTERFACE =====
|
43 |
gradio==3.28.3
|