Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +16 -29
requirements.txt
CHANGED
@@ -1,25 +1,15 @@
|
|
|
|
|
|
|
|
1 |
git+https://github.com/resemble-ai/chatterbox.git
|
2 |
-
|
|
|
3 |
torch>=2.0.0
|
4 |
torchaudio>=2.0.0
|
5 |
-
numpy==1.26.0 # Fixed version as specified
|
6 |
-
transformers==4.46.3
|
7 |
-
diffusers==0.29.0
|
8 |
-
|
9 |
-
# Audio Processing
|
10 |
-
librosa==0.10.0
|
11 |
-
soundfile>=0.12.0
|
12 |
-
resampy==0.4.3
|
13 |
-
scipy>=1.9.0
|
14 |
-
|
15 |
-
# Speech Processing
|
16 |
-
silero-vad==5.1.2
|
17 |
-
conformer==0.3.2
|
18 |
|
19 |
-
#
|
20 |
-
|
21 |
-
|
22 |
-
omegaconf==2.3.0
|
23 |
|
24 |
# Web Framework
|
25 |
gradio>=4.0.0
|
@@ -30,16 +20,13 @@ pydantic>=2.0.0
|
|
30 |
# Hugging Face Spaces
|
31 |
spaces>=0.28.0
|
32 |
|
33 |
-
#
|
34 |
requests>=2.28.0
|
35 |
|
36 |
-
#
|
37 |
-
|
38 |
-
#
|
39 |
-
#
|
40 |
-
|
41 |
-
#
|
42 |
-
#
|
43 |
-
|
44 |
-
# Option 3: If it's available on PyPI (uncomment if available)
|
45 |
-
# chatterbox-tts>=1.0.0
|
|
|
1 |
+
# Minimal approach: Only essential packages, let ChatterboxTTS handle audio deps
|
2 |
+
|
3 |
+
# ChatterboxTTS from Resemble AI GitHub Repository (install first)
|
4 |
git+https://github.com/resemble-ai/chatterbox.git
|
5 |
+
|
6 |
+
# Core ML (if not included in ChatterboxTTS)
|
7 |
torch>=2.0.0
|
8 |
torchaudio>=2.0.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
+
# Only specify versions that are absolutely required
|
11 |
+
numpy==1.26.0
|
12 |
+
transformers==4.46.3
|
|
|
13 |
|
14 |
# Web Framework
|
15 |
gradio>=4.0.0
|
|
|
20 |
# Hugging Face Spaces
|
21 |
spaces>=0.28.0
|
22 |
|
23 |
+
# Essential utilities
|
24 |
requests>=2.28.0
|
25 |
|
26 |
+
# Add back other dependencies only if needed
|
27 |
+
# diffusers==0.29.0
|
28 |
+
# silero-vad==5.1.2
|
29 |
+
# conformer==0.3.2
|
30 |
+
# s3tokenizer
|
31 |
+
# resemble-perth==1.0.1
|
32 |
+
# omegaconf==2.3.0
|
|
|
|
|
|