Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +30 -14
requirements.txt
CHANGED
@@ -1,28 +1,44 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
transformers==4.46.3
|
6 |
diffusers==0.29.0
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
silero-vad==5.1.2
|
10 |
conformer==0.3.2
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
|
|
|
|
16 |
gradio>=4.0.0
|
17 |
fastapi>=0.100.0
|
18 |
uvicorn[standard]>=0.20.0
|
19 |
pydantic>=2.0.0
|
|
|
|
|
20 |
spaces>=0.28.0
|
21 |
-
scipy>=1.9.0
|
22 |
|
23 |
# Utilities
|
24 |
requests>=2.28.0
|
25 |
|
26 |
-
# ChatterboxTTS -
|
27 |
-
|
28 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core ML and Audio Processing
|
2 |
+
torch>=2.0.0
|
3 |
+
torchaudio>=2.0.0
|
4 |
+
numpy==1.26.0 # Fixed version as specified
|
5 |
transformers==4.46.3
|
6 |
diffusers==0.29.0
|
7 |
+
|
8 |
+
# Audio Processing
|
9 |
+
librosa==0.10.0
|
10 |
+
soundfile>=0.12.0
|
11 |
+
resampy==0.4.3
|
12 |
+
scipy>=1.9.0
|
13 |
+
|
14 |
+
# Speech Processing
|
15 |
silero-vad==5.1.2
|
16 |
conformer==0.3.2
|
17 |
|
18 |
+
# ChatterboxTTS Dependencies
|
19 |
+
s3tokenizer
|
20 |
+
resemble-perth==1.0.1
|
21 |
+
omegaconf==2.3.0
|
22 |
+
|
23 |
+
# Web Framework
|
24 |
gradio>=4.0.0
|
25 |
fastapi>=0.100.0
|
26 |
uvicorn[standard]>=0.20.0
|
27 |
pydantic>=2.0.0
|
28 |
+
|
29 |
+
# Hugging Face Spaces
|
30 |
spaces>=0.28.0
|
|
|
31 |
|
32 |
# Utilities
|
33 |
requests>=2.28.0
|
34 |
|
35 |
+
# ChatterboxTTS - Add one of these options:
|
36 |
+
|
37 |
+
# Option 1: If you have ChatterboxTTS as a git repo
|
38 |
+
# git+https://github.com/username/chatterbox.git
|
39 |
+
|
40 |
+
# Option 2: If you have it as a wheel file in your space
|
41 |
+
# ./chatterbox-1.0.0-py3-none-any.whl
|
42 |
+
|
43 |
+
# Option 3: If it's available on PyPI (uncomment if available)
|
44 |
+
# chatterbox-tts>=1.0.0
|