syed7 commited on
Commit
01b3734
·
verified ·
1 Parent(s): eee32bd

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +26 -16
requirements.txt CHANGED
@@ -1,17 +1,27 @@
1
- streamlit
2
- google-cloud-speech
3
- torch
4
- numpy
5
- transformers
6
- librosa
7
- groq
8
- sounddevice
9
- scipy
10
- openai
11
- plotly
12
- pydub
13
- python-dateutil
14
- google-auth
15
- ffmpeg-python
16
 
17
- google-oauth2-client
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ streamlit==1.39.0
3
+ numpy==2.0.2
4
+ torch==2.5.1
5
+ transformers==4.46.1
 
 
 
 
 
 
 
 
 
 
6
 
7
+ # Audio processing
8
+ sounddevice==0.5.1
9
+ scipy==1.14.1
10
+ pydub==0.25.1
11
+ librosa==0.10.2.post1
12
+ ffmpeg-python==0.2.0
13
+
14
+ # Google Cloud
15
+ google-cloud-speech==2.28.0
16
+ google-auth==2.36.0
17
+ google-oauth2==0.2.0
18
+
19
+ # API clients
20
+ openai==1.55.3
21
+ groq==0.12.0
22
+
23
+ # Visualization
24
+ plotly==5.24.1
25
+
26
+ # Utils
27
+ python-dateutil==2.9.0.post0