mastefan commited on
Commit
5469eef
·
verified ·
1 Parent(s): a2b6370

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +27 -16
requirements.txt CHANGED
@@ -1,37 +1,48 @@
1
- # --- Core UI ---
 
 
2
  streamlit==1.28.0
3
  tornado==6.3.3
4
 
5
- # --- Audio recording ---
6
- streamlit-audiorecorder
7
-
8
- # --- TTS / audio handling ---
9
- gTTS
10
  pydub
11
  soundfile
12
- ffmpeg-python
13
 
14
- # --- OCR and image tools ---
 
 
 
 
 
 
 
 
15
  pytesseract
16
  pillow
17
 
18
- # --- Translation ---
 
 
19
  deep-translator
20
 
21
- # --- LLM + Whisper ---
 
 
22
  transformers==4.40.0
23
  accelerate
24
  sentencepiece
25
  safetensors
 
26
 
27
- # --- Whisper (transformers version, NOT faster-whisper) ---
28
- # No AV or ctranslate2 dependencies required!
29
- # transformers provides WhisperForConditionalGeneration via PyTorch.
30
-
31
- # --- Data + utilities ---
32
  numpy<2
33
  pandas
34
- regex
35
  requests
36
 
37
 
 
1
+ ########################################
2
+ # Streamlit Core
3
+ ########################################
4
  streamlit==1.28.0
5
  tornado==6.3.3
6
 
7
+ ########################################
8
+ # Audio Input / Output
9
+ ########################################
10
+ ffmpeg-python
 
11
  pydub
12
  soundfile
13
+ gTTS
14
 
15
+ ########################################
16
+ # Speech Recognition — faster-whisper
17
+ ########################################
18
+ ctranslate2==3.19.0
19
+ faster-whisper==0.9.0
20
+
21
+ ########################################
22
+ # OCR / Image Tools
23
+ ########################################
24
  pytesseract
25
  pillow
26
 
27
+ ########################################
28
+ # Translation
29
+ ########################################
30
  deep-translator
31
 
32
+ ########################################
33
+ # Language Modeling / Text Processing
34
+ ########################################
35
  transformers==4.40.0
36
  accelerate
37
  sentencepiece
38
  safetensors
39
+ regex
40
 
41
+ ########################################
42
+ # General Utilities
43
+ ########################################
 
 
44
  numpy<2
45
  pandas
 
46
  requests
47
 
48