ceymox commited on
Commit
7e57840
·
verified ·
1 Parent(s): fea2fe4

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +16 -29
requirements.txt CHANGED
@@ -1,25 +1,15 @@
 
 
 
1
  git+https://github.com/resemble-ai/chatterbox.git
2
- # Core ML and Audio Processing
 
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
- # ChatterboxTTS Dependencies
20
- s3tokenizer
21
- resemble-perth==1.0.1
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
- # Utilities
34
  requests>=2.28.0
35
 
36
- # ChatterboxTTS - Add one of these options:
37
-
38
- # Option 1: If you have ChatterboxTTS as a git repo
39
- # git+https://github.com/username/chatterbox.git
40
-
41
- # Option 2: If you have it as a wheel file in your space
42
- # ./chatterbox-1.0.0-py3-none-any.whl
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