Update requirements.txt
Browse files- requirements.txt +21 -7
requirements.txt
CHANGED
@@ -1,11 +1,25 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
sentencepiece==0.1.96
|
7 |
-
|
|
|
8 |
pip==23.1
|
9 |
setuptools>=65.5.1
|
10 |
wheel
|
11 |
-
|
|
|
1 |
+
# Streamlit for the app interface
|
2 |
+
streamlit==1.24.0
|
3 |
+
|
4 |
+
# Hugging Face Transformers library for models
|
5 |
+
transformers==4.34.0
|
6 |
+
|
7 |
+
# Torch for deep learning support
|
8 |
+
torch==2.0.1
|
9 |
+
|
10 |
+
# Numpy for numerical computations (ensure compatibility)
|
11 |
+
numpy>=1.21.0
|
12 |
+
|
13 |
+
# Soundfile for audio file handling
|
14 |
+
soundfile==0.12.1
|
15 |
+
|
16 |
+
# Hugging Face TTS (or alternative for text-to-speech models)
|
17 |
+
TTS==0.13.3
|
18 |
+
|
19 |
+
# SentencePiece for tokenization support
|
20 |
sentencepiece==0.1.96
|
21 |
+
|
22 |
+
# Additional core dependencies
|
23 |
pip==23.1
|
24 |
setuptools>=65.5.1
|
25 |
wheel
|
|