Update requirements.txt
Browse files- requirements.txt +6 -9
requirements.txt
CHANGED
|
@@ -1,19 +1,16 @@
|
|
| 1 |
-
# 1. Core numerics - Pin numpy < 2.0
|
| 2 |
numpy<2.0
|
| 3 |
pandas
|
| 4 |
|
| 5 |
-
# 2.
|
| 6 |
-
|
| 7 |
-
torchaudio==2.5.1
|
| 8 |
-
|
| 9 |
-
# 3. Audio & Diarization - CRITICAL FIX
|
| 10 |
-
# WhisperX breaks with pyannote.audio > 3.1.1
|
| 11 |
pyannote.audio==3.1.1
|
| 12 |
|
| 13 |
-
#
|
|
|
|
| 14 |
git+https://github.com/m-bain/whisperx.git
|
| 15 |
|
| 16 |
-
#
|
| 17 |
streamlit
|
| 18 |
requests
|
| 19 |
ffmpeg-python
|
|
|
|
| 1 |
+
# 1. Core numerics - Pin numpy < 2.0 is CRITICAL
|
| 2 |
numpy<2.0
|
| 3 |
pandas
|
| 4 |
|
| 5 |
+
# 2. Audio & Diarization
|
| 6 |
+
# We pin pyannote to 3.1.1 because WhisperX is not compatible with 3.2+
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
pyannote.audio==3.1.1
|
| 8 |
|
| 9 |
+
# 3. The Main Library
|
| 10 |
+
# This will automatically install the correct torch/torchaudio versions
|
| 11 |
git+https://github.com/m-bain/whisperx.git
|
| 12 |
|
| 13 |
+
# 4. UI & Utils
|
| 14 |
streamlit
|
| 15 |
requests
|
| 16 |
ffmpeg-python
|