Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +19 -11
requirements.txt
CHANGED
@@ -1,12 +1,20 @@
|
|
1 |
-
|
2 |
-
|
|
|
3 |
git+https://github.com/openai/whisper.git
|
4 |
-
pydub
|
5 |
-
PyMuPDF
|
6 |
-
python-docx
|
7 |
-
pandas
|
8 |
-
gradio
|
9 |
-
requests
|
10 |
-
beautifulsoup4
|
11 |
-
moviepy
|
12 |
-
yt-dlp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
openai==0.28.0
|
3 |
+
transformers>=4.30.0
|
4 |
git+https://github.com/openai/whisper.git
|
5 |
+
pydub>=0.25.1
|
6 |
+
PyMuPDF>=1.21.1
|
7 |
+
python-docx>=0.8.11
|
8 |
+
pandas>=2.0.0
|
9 |
+
gradio>=3.32.0
|
10 |
+
requests>=2.28.0
|
11 |
+
beautifulsoup4>=4.11.0
|
12 |
+
moviepy>=1.0.3
|
13 |
+
yt-dlp>=2023.3.4
|
14 |
+
|
15 |
+
# Additional dependencies
|
16 |
+
torch>=2.0.0
|
17 |
+
numpy>=1.24.0
|
18 |
+
tqdm>=4.65.0
|
19 |
+
ffmpeg-python>=0.2.0
|
20 |
+
Pillow>=9.5.0
|