Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
colorFrom: red
|
5 |
colorTo: gray
|
6 |
sdk: gradio
|
@@ -8,7 +8,17 @@ sdk_version: 5.43.1
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
-
short_description:
|
12 |
-
---
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: Speech ↔ Text ↔ Speech Chatbot
|
3 |
+
emoji: 🎤
|
4 |
colorFrom: red
|
5 |
colorTo: gray
|
6 |
sdk: gradio
|
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
+
short_description: This is a Streamlit app deployed on Hugging Face Spaces.
|
|
|
12 |
|
13 |
+
Features:
|
14 |
+
- Voice input (record or upload audio)
|
15 |
+
- Whisper ASR (speech-to-text)
|
16 |
+
- Groq LLM response
|
17 |
+
- gTTS speech synthesis (text-to-speech)
|
18 |
+
- Conversation history with feedback
|
19 |
+
---
|
20 |
+
### 🚀 Run locally
|
21 |
+
```bash
|
22 |
+
pip install -r requirements.txt
|
23 |
+
streamlit run app.py
|
24 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|