Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +23 -12
requirements.txt
CHANGED
@@ -1,26 +1,37 @@
|
|
1 |
-
#
|
2 |
fastapi==0.103.1
|
3 |
uvicorn==0.23.2
|
4 |
python-multipart==0.0.6
|
|
|
5 |
|
6 |
-
# AI/ML
|
7 |
-
torch==
|
8 |
-
transformers==4.
|
9 |
-
diffusers==0.
|
10 |
-
huggingface-hub==0.
|
|
|
11 |
|
12 |
-
#
|
13 |
soundfile==0.12.1
|
14 |
librosa==0.10.0
|
15 |
gTTS==2.3.2
|
16 |
-
|
|
|
17 |
|
18 |
-
#
|
19 |
Pillow==10.0.0
|
20 |
imageio[ffmpeg]==2.31.1
|
|
|
21 |
moviepy==1.0.3
|
|
|
22 |
|
23 |
-
#
|
24 |
langdetect==1.0.9
|
25 |
-
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# ===== CORE API =====
|
2 |
fastapi==0.103.1
|
3 |
uvicorn==0.23.2
|
4 |
python-multipart==0.0.6
|
5 |
+
python-dotenv==1.0.0
|
6 |
|
7 |
+
# ===== AI/ML (VERSION-LOCKED) =====
|
8 |
+
torch==1.13.1 --extra-index-url https://download.pytorch.org/whl/cpu
|
9 |
+
transformers==4.28.1
|
10 |
+
diffusers==0.18.2
|
11 |
+
huggingface-hub==0.13.4
|
12 |
+
accelerate==0.18.0
|
13 |
|
14 |
+
# ===== AUDIO PROCESSING =====
|
15 |
soundfile==0.12.1
|
16 |
librosa==0.10.0
|
17 |
gTTS==2.3.2
|
18 |
+
SpeechRecognition==3.10.0
|
19 |
+
pydub==0.25.1
|
20 |
|
21 |
+
# ===== IMAGE/VIDEO =====
|
22 |
Pillow==10.0.0
|
23 |
imageio[ffmpeg]==2.31.1
|
24 |
+
imageio-ffmpeg==0.4.8
|
25 |
moviepy==1.0.3
|
26 |
+
opencv-python-headless==4.7.0.72
|
27 |
|
28 |
+
# ===== UTILITIES =====
|
29 |
langdetect==1.0.9
|
30 |
+
pymupdf==1.22.5
|
31 |
+
numpy==1.24.3
|
32 |
+
tqdm==4.65.0
|
33 |
+
requests==2.31.0
|
34 |
+
|
35 |
+
# ===== OPTIONAL (REMOVE IF NOT NEEDED) =====
|
36 |
+
# pyttsx3==2.90 (alternative TTS)
|
37 |
+
# scipy==1.10.1 (for advanced audio)
|