Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +9 -0
requirements.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# requirements.txt ── deps for Hugging Face Space
|
2 |
+
streamlit>=1.33 # front-end UI
|
3 |
+
transformers>=4.40 # Hugging Face pipelines
|
4 |
+
torch>=2.2 # core tensor library (CPU build auto-selected by HF)
|
5 |
+
soundfile # write WAV audio
|
6 |
+
numpy # array ops for audio concat
|
7 |
+
pillow # image handling (PIL)
|
8 |
+
sentencepiece # tokenizer back-end for some models
|
9 |
+
accelerate # speeds up HF inference, optional but lightweight
|