Commit ·
6805cf0
1
Parent(s): c730107
\"chore: remove app.py\"
Browse files
app.py
DELETED
|
@@ -1,55 +0,0 @@
|
|
| 1 |
-
"""
|
| 2 |
-
Hugging Face Space placeholder.
|
| 3 |
-
|
| 4 |
-
This is a Reachy Mini App, not a Hugging Face Space.
|
| 5 |
-
Install it on your Reachy Mini robot from the App Store.
|
| 6 |
-
"""
|
| 7 |
-
|
| 8 |
-
import gradio as gr
|
| 9 |
-
|
| 10 |
-
with gr.Blocks(title="Reachy Mini HA Voice") as demo:
|
| 11 |
-
gr.Markdown("""
|
| 12 |
-
# 🤖 Reachy Mini Home Assistant Voice Assistant
|
| 13 |
-
|
| 14 |
-
**This is a Reachy Mini App, not a Hugging Face Space.**
|
| 15 |
-
|
| 16 |
-
## Installation
|
| 17 |
-
|
| 18 |
-
Install this app directly from your **Reachy Mini Dashboard**:
|
| 19 |
-
|
| 20 |
-
1. Open Reachy Mini Dashboard in your browser
|
| 21 |
-
2. Go to **Apps** section
|
| 22 |
-
3. Find **Reachy Mini HA Voice** and click **Install**
|
| 23 |
-
|
| 24 |
-
## Features
|
| 25 |
-
|
| 26 |
-
- **Local Wake Word Detection**: Uses microWakeWord for offline wake word detection
|
| 27 |
-
- **ESPHome Integration**: Seamlessly connects to Home Assistant
|
| 28 |
-
- **Motion Control**: Head movements and antenna animations during voice interaction
|
| 29 |
-
- **Zero Configuration**: Install and run - all settings are managed in Home Assistant
|
| 30 |
-
|
| 31 |
-
## Usage
|
| 32 |
-
|
| 33 |
-
After installation on Reachy Mini:
|
| 34 |
-
|
| 35 |
-
**Automatic Discovery (Recommended):**
|
| 36 |
-
- Home Assistant will automatically discover your Reachy Mini via mDNS
|
| 37 |
-
- A notification will appear in Home Assistant - just click to add the device
|
| 38 |
-
|
| 39 |
-
**Manual Setup (if auto-discovery fails):**
|
| 40 |
-
1. Open Home Assistant
|
| 41 |
-
2. Go to **Settings** → **Devices & Services** → **Add Integration**
|
| 42 |
-
3. Search for **ESPHome**
|
| 43 |
-
4. Enter your Reachy Mini's IP address with port `6053`
|
| 44 |
-
|
| 45 |
-
Default wake word: **"Okay Nabu"**
|
| 46 |
-
|
| 47 |
-
## Links
|
| 48 |
-
|
| 49 |
-
- [Source Code](https://huggingface.co/spaces/djhui5710/reachy_mini_ha_voice/tree/main)
|
| 50 |
-
- [OHF-Voice/linux-voice-assistant](https://github.com/OHF-Voice/linux-voice-assistant)
|
| 51 |
-
- [Pollen Robotics](https://www.pollen-robotics.com/)
|
| 52 |
-
""")
|
| 53 |
-
|
| 54 |
-
if __name__ == "__main__":
|
| 55 |
-
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|