Spaces:
Build error
Build error
update
Browse files- requirements.txt +26 -10
requirements.txt
CHANGED
@@ -1,11 +1,27 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
gradio==3.50.2
|
5 |
-
transformers==4.36.2
|
6 |
-
torchaudio==2.2.0
|
7 |
-
torch==2.2.0
|
8 |
-
librosa==0.10.1
|
9 |
-
ffmpeg-python==0.2.0
|
10 |
-
soundfile==0.12.1
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core Libraries
|
2 |
+
torch>=2.0.0
|
3 |
+
gradio>=3.50.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
+
# Audio Processing
|
6 |
+
whisper-openai>=1.0.0
|
7 |
+
pydub>=0.25.1
|
8 |
+
librosa>=0.10.0 # Required for whisper's audio processing
|
9 |
+
|
10 |
+
# Speaker Diarization
|
11 |
+
pyannote.audio>=3.1.0
|
12 |
+
|
13 |
+
# LLM & NLP
|
14 |
+
transformers>=4.40.0
|
15 |
+
sentencepiece>=0.2.0 # Required for Qwen tokenizer
|
16 |
+
lmdeploy>=0.4.0
|
17 |
+
accelerate>=0.29.0 # Required for LMDeploy
|
18 |
+
|
19 |
+
# Medical NLP
|
20 |
+
presidio-analyzer>=2.2.0
|
21 |
+
presidio-anonymizer>=2.2.0
|
22 |
+
|
23 |
+
# Utilities
|
24 |
+
numpy>=1.26.0
|
25 |
+
tqdm>=4.66.0
|
26 |
+
tempfile>=0.3.0
|
27 |
+
python-dotenv>=1.0.0 # For secure credential management
|