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