Commit ·
7a387e9
1
Parent(s): 2d6a393
Add Dockerized Streamlit chatbot app for HF Space
Browse files- requirements.txt +3 -0
- space.yaml +2 -1
requirements.txt
CHANGED
|
@@ -5,3 +5,6 @@ uvicorn
|
|
| 5 |
streamlit
|
| 6 |
transformers>=4.40.0
|
| 7 |
torch>=2.1.0
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
streamlit
|
| 6 |
transformers>=4.40.0
|
| 7 |
torch>=2.1.0
|
| 8 |
+
transformers
|
| 9 |
+
pyttsx3
|
| 10 |
+
SpeechRecognition
|
space.yaml
CHANGED
|
@@ -3,6 +3,7 @@
|
|
| 3 |
## ✅ 6. (Optional) `Space.yaml` (for Hugging Face Spaces)
|
| 4 |
|
| 5 |
```yaml
|
| 6 |
-
sdk: docker
|
| 7 |
app_file: app.py
|
| 8 |
python_version: "3.9"
|
|
|
|
|
|
|
|
|
| 3 |
## ✅ 6. (Optional) `Space.yaml` (for Hugging Face Spaces)
|
| 4 |
|
| 5 |
```yaml
|
|
|
|
| 6 |
app_file: app.py
|
| 7 |
python_version: "3.9"
|
| 8 |
+
sdk: docker
|
| 9 |
+
app_file: streamlit_app.py
|