Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +10 -5
requirements.txt
CHANGED
@@ -1,7 +1,12 @@
|
|
|
|
1 |
transformers>=4.30.0
|
2 |
-
sentencepiece
|
3 |
-
accelerate
|
4 |
-
TTS==0.22.1 # Coqui TTS (CPU wheels)
|
5 |
-
soundfile # audio I/O for TTS
|
6 |
-
gradio==5.31.0
|
7 |
torch>=2.0.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# translation & core
|
2 |
transformers>=4.30.0
|
3 |
+
sentencepiece
|
4 |
+
accelerate>=0.24.0 # runtime helper for HF models
|
|
|
|
|
|
|
5 |
torch>=2.0.0
|
6 |
+
|
7 |
+
# text-to-speech (latest wheel that supports py3.10)
|
8 |
+
TTS==0.22.0 # 0.22.1 wheel hasn’t been uploaded yet
|
9 |
+
soundfile # audio I/O backend
|
10 |
+
|
11 |
+
# UI
|
12 |
+
gradio==5.31.0
|