Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +9 -5
requirements.txt
CHANGED
|
@@ -3,16 +3,20 @@ gradio>=4.0.0
|
|
| 3 |
torch>=2.0.0
|
| 4 |
torchaudio>=2.0.0
|
| 5 |
|
| 6 |
-
# Audio processing
|
| 7 |
-
|
| 8 |
-
pydub>=0.25.1
|
| 9 |
-
pyannote.audio>=3.1.0
|
| 10 |
|
| 11 |
-
# ML/NLP models
|
|
|
|
|
|
|
| 12 |
transformers>=4.35.0
|
| 13 |
accelerate>=0.24.0
|
| 14 |
huggingface_hub>=0.19.0
|
| 15 |
|
|
|
|
|
|
|
|
|
|
| 16 |
# Utilities
|
| 17 |
numpy>=1.24.0
|
| 18 |
scipy>=1.11.0
|
|
|
|
| 3 |
torch>=2.0.0
|
| 4 |
torchaudio>=2.0.0
|
| 5 |
|
| 6 |
+
# Audio processing & Diarization
|
| 7 |
+
whisperx>=3.3.1 # Using a recent stable version for whisperx
|
| 8 |
+
pydub>=0.25.1 # Or a newer version if you prefer, e.g., pydub
|
|
|
|
| 9 |
|
| 10 |
+
# ML/NLP models (whisperx handles underlying model dependencies)
|
| 11 |
+
# transformers, accelerate, huggingface_hub are often brought in by whisperx
|
| 12 |
+
# but keeping them explicitly here for clarity and to ensure compatibility
|
| 13 |
transformers>=4.35.0
|
| 14 |
accelerate>=0.24.0
|
| 15 |
huggingface_hub>=0.19.0
|
| 16 |
|
| 17 |
+
# For Codestral API calls
|
| 18 |
+
requests>=2.28.1 # A common, stable version of requests
|
| 19 |
+
|
| 20 |
# Utilities
|
| 21 |
numpy>=1.24.0
|
| 22 |
scipy>=1.11.0
|