Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +12 -14
requirements.txt
CHANGED
@@ -1,25 +1,23 @@
|
|
1 |
-
|
2 |
-
torch
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
accelerate==0.29.0
|
7 |
-
gradio>=5.0.0
|
8 |
-
huggingface-hub>=0.22.0
|
9 |
numpy
|
10 |
scipy
|
|
|
11 |
git+https://github.com/openai/whisper.git
|
12 |
pydub
|
13 |
-
PyMuPDF
|
14 |
python-docx
|
15 |
pandas
|
16 |
openpyxl
|
17 |
requests
|
18 |
beautifulsoup4
|
19 |
-
moviepy==1.0.3
|
20 |
-
yt-dlp
|
21 |
-
sentencepiece
|
22 |
-
ffmpeg-python
|
23 |
spaces
|
24 |
tqdm
|
25 |
-
decorator>=4.0.2
|
|
|
1 |
+
transformers>=4.30.0
|
2 |
+
torch>=2.0.0
|
3 |
+
accelerate
|
4 |
+
gradio>=4.0.0,<5.0.0 # Use a valid recent version range
|
5 |
+
huggingface-hub
|
|
|
|
|
|
|
6 |
numpy
|
7 |
scipy
|
8 |
+
# Use commit hash for stability if needed, or keep as is
|
9 |
git+https://github.com/openai/whisper.git
|
10 |
pydub
|
11 |
+
PyMuPDF # Fitz
|
12 |
python-docx
|
13 |
pandas
|
14 |
openpyxl
|
15 |
requests
|
16 |
beautifulsoup4
|
17 |
+
# moviepy==1.0.3 # Often not needed if using ffmpeg directly
|
18 |
+
yt-dlp>=2023.0.0 # Ensure a recent version
|
19 |
+
sentencepiece # Often a dependency for tokenizers
|
20 |
+
ffmpeg-python # Wrapper if needed, though direct subprocess call is used
|
21 |
spaces
|
22 |
tqdm
|
23 |
+
# decorator>=4.0.2 # Usually installed as dependency
|