Update requirements.txt
Browse files- requirements.txt +21 -27
requirements.txt
CHANGED
@@ -1,31 +1,25 @@
|
|
1 |
-
# Core
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
5 |
|
6 |
-
#
|
7 |
-
|
8 |
-
|
|
|
|
|
9 |
|
10 |
-
#
|
11 |
-
|
12 |
-
|
13 |
|
14 |
-
# TTS
|
15 |
-
|
16 |
|
17 |
-
#
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
scikit-learn==1.2.2
|
22 |
-
datasets==2.14.6
|
23 |
-
sentencepiece==0.1.99
|
24 |
-
webrtcvad==2.0.10
|
25 |
-
|
26 |
-
# API support
|
27 |
-
pydantic>=2.0
|
28 |
-
typing-extensions>=4.8.0
|
29 |
-
|
30 |
-
# Pin numpy to compatible version
|
31 |
-
numpy==1.24.3
|
|
|
1 |
+
# Core dependencies
|
2 |
+
gradio>=4.0.0
|
3 |
+
torch==2.6.0
|
4 |
+
torchaudio>=2.1.0
|
5 |
+
transformers>=4.30.0
|
6 |
+
accelerate>=0.20.0
|
7 |
+
datasets>=2.14.0
|
8 |
|
9 |
+
# Audio processing
|
10 |
+
librosa>=0.10.0
|
11 |
+
soundfile>=0.12.0
|
12 |
+
scipy>=1.9.0
|
13 |
+
numpy>=1.21.0
|
14 |
|
15 |
+
# Ultravox and speech models
|
16 |
+
peft>=0.6.0
|
17 |
+
safetensors>=0.3.0
|
18 |
|
19 |
+
# Dia TTS
|
20 |
+
git+https://github.com/nari-labs/dia.git
|
21 |
|
22 |
+
# Additional utilities
|
23 |
+
huggingface_hub>=0.16.0
|
24 |
+
requests>=2.28.0
|
25 |
+
python-dotenv>=1.0.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|