ghostai1 commited on
Commit
983e1af
·
verified ·
1 Parent(s): 9a9cbbe

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +7 -9
requirements.txt CHANGED
@@ -3,17 +3,15 @@ torch==2.1.2 --index-url https://download.pytorch.org/whl/cpu
3
  torchaudio==2.1.2 --index-url https://download.pytorch.org/whl/cpu
4
  numpy==1.23.5
5
 
6
- # Music generation dependencies
7
  audiocraft==0.0.2
 
8
  pydub==0.25.1
9
  psutil==5.9.8
10
 
11
- # spaCy (upgraded to avoid pydantic conflicts)
12
- spacy==3.7.4 # supports pydantic>=2.0
13
- typer==0.9.4 # matches spaCy 3.7.4 requirements
14
 
15
- # Web UI & CLI
16
- gradio==5.31.0 # requires pydantic>=2.0
17
-
18
- # Hugging Face integration
19
- huggingface_hub>=0.28.1,<1.0.0
 
3
  torchaudio==2.1.2 --index-url https://download.pytorch.org/whl/cpu
4
  numpy==1.23.5
5
 
6
+ # Audiocraft explicitly requires spaCy==3.5.2
7
  audiocraft==0.0.2
8
+ spacy==3.5.2
9
  pydub==0.25.1
10
  psutil==5.9.8
11
 
12
+ # Compatible Gradio version
13
+ gradio==3.50.2
14
+ typer==0.7.0 # compatible with spaCy 3.5.2 and Gradio 3.50.2
15
 
16
+ # Hugging Face Hub compatible with audiocraft and gradio
17
+ huggingface_hub>=0.14.1,<1.0.0