Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +12 -17
requirements.txt
CHANGED
@@ -4,13 +4,13 @@ uvicorn==0.22.0
|
|
4 |
python-multipart==0.0.6
|
5 |
python-dotenv==1.0.0
|
6 |
|
7 |
-
# ===== AI/ML (
|
8 |
-
torch==
|
9 |
-
transformers==4.
|
10 |
-
diffusers==0.
|
11 |
-
huggingface-hub==0.
|
12 |
-
accelerate==0.
|
13 |
-
sentencepiece==0.1.99
|
14 |
|
15 |
# ===== AUDIO PROCESSING =====
|
16 |
soundfile==0.12.1
|
@@ -18,7 +18,7 @@ librosa==0.9.2
|
|
18 |
gTTS==2.3.2
|
19 |
SpeechRecognition==3.8.1
|
20 |
pydub==0.25.1
|
21 |
-
webrtcvad==2.0.10
|
22 |
|
23 |
# ===== IMAGE/VIDEO =====
|
24 |
Pillow==9.5.0
|
@@ -29,20 +29,15 @@ 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.41.0
|
44 |
-
|
45 |
-
# ===== OPTIONAL (UNCOMMENT IF NEEDED) =====
|
46 |
-
# scipy==1.10.1 # Advanced audio features
|
47 |
-
# pandas==1.5.3 # For CSV processing
|
48 |
-
# openai-whisper==20230314 # Alternative speech recognition
|
|
|
4 |
python-multipart==0.0.6
|
5 |
python-dotenv==1.0.0
|
6 |
|
7 |
+
# ===== AI/ML (STABLE VERSIONS) =====
|
8 |
+
torch==2.0.1 --extra-index-url https://download.pytorch.org/whl/cpu
|
9 |
+
transformers==4.30.2
|
10 |
+
diffusers==0.19.3
|
11 |
+
huggingface-hub==0.16.4
|
12 |
+
accelerate==0.21.0
|
13 |
+
sentencepiece==0.1.99
|
14 |
|
15 |
# ===== AUDIO PROCESSING =====
|
16 |
soundfile==0.12.1
|
|
|
18 |
gTTS==2.3.2
|
19 |
SpeechRecognition==3.8.1
|
20 |
pydub==0.25.1
|
21 |
+
webrtcvad==2.0.10
|
22 |
|
23 |
# ===== IMAGE/VIDEO =====
|
24 |
Pillow==9.5.0
|
|
|
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.41.0
|
|
|
|
|
|
|
|
|
|