bakshia commited on
Commit
fb12f43
·
1 Parent(s): de746e0

Fix: Update requirements to use available package versions

Browse files
Files changed (1) hide show
  1. requirements.txt +16 -16
requirements.txt CHANGED
@@ -1,24 +1,24 @@
1
  # FastAPI
2
- fastapi==0.109.0
3
- uvicorn[standard]==0.27.0
4
- pydantic==2.5.3
5
- python-multipart==0.0.6
6
 
7
  # Audio Processing
8
- librosa==0.10.1
9
- soundfile==0.12.1
10
- pydub==0.25.1
11
 
12
- # ML/DL - Core
13
- torch==2.1.2
14
- torchaudio==2.1.2
15
- transformers==4.36.2
16
 
17
  # IndicWav2Vec and SpeechBrain
18
- speechbrain==1.0.0
19
 
20
  # Utilities
21
- numpy==1.26.3
22
- scipy==1.12.0
23
- scikit-learn==1.4.0
24
- httpx==0.26.0
 
1
  # FastAPI
2
+ fastapi>=0.109.0
3
+ uvicorn[standard]>=0.27.0
4
+ pydantic>=2.5.3
5
+ python-multipart>=0.0.6
6
 
7
  # Audio Processing
8
+ librosa>=0.10.1
9
+ soundfile>=0.12.1
10
+ pydub>=0.25.1
11
 
12
+ # ML/DL - Core (use available versions)
13
+ torch>=2.5.0
14
+ torchaudio>=2.5.0
15
+ transformers>=4.36.2
16
 
17
  # IndicWav2Vec and SpeechBrain
18
+ speechbrain>=1.0.0
19
 
20
  # Utilities
21
+ numpy>=1.26.0
22
+ scipy>=1.12.0
23
+ scikit-learn>=1.4.0
24
+ httpx>=0.26.0