Spaces:
Running
Running
File size: 17,470 Bytes
534b431 dfedf76 534b431 3d18f82 534b431 dfedf76 534b431 dfedf76 f919463 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 dfedf76 534b431 3d18f82 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 | ---
title: Lyon Chatbox
emoji: π¬
colorFrom: red
colorTo: blue
sdk: static
pinned: false
short_description: Live chat with Reachy Mini!
suggested_storage: large
tags:
- reachy_mini
- reachy_mini_python_app
license: apache-2.0
---
# Lyon Chatbox
A modular voice conversation app for the [Reachy Mini](https://github.com/pollen-robotics/reachy_mini/) robot. Cheap to run, versatile, customizable, and fun.
ChatBox uses a **cascade pipeline** β ASR β LLM β TTS β where each stage is a swappable provider. Mix cloud APIs and local models, tweak the personality, add live reactions to keywords, and let the robot dance.

## How it works
```
π€ Microphone
β
βΌ
βββββββββββ βββββββββββ βββββββββββ π Speaker
β ASR β βββΆ β LLM β βββΆ β TTS β βββΆ π€ Robot moves
βββββββββββ βββββββββββ βββββββββββ
Speech to Reasoning Text to
text + tool calls speech
```
Voice Activity Detection (VAD) segments microphone input. The ASR provider transcribes it, the LLM generates a response (with optional tool calls for head movements, dances, emotions, cameraβ¦), and the TTS provider speaks it back β all while the robot animates.
## Installation
> [!IMPORTANT]
> Before using this app, install [Reachy Mini's SDK](https://github.com/pollen-robotics/reachy_mini/).
<details open>
<summary><b>Using uv (recommended)</b></summary>
```bash
# Create venv
uv venv --python python3.12 .venv
source .venv/bin/activate
# Install with cascade pipeline
uv sync --extra cascade
```
Install additional providers as needed:
```bash
uv sync --extra cascade_parakeet_progressive # Parakeet ASR (Apple Silicon)
uv sync --extra cascade_kokoro # Kokoro TTS (local)
uv sync --extra cascade_gemini # Gemini LLM
uv sync --extra cascade_elevenlabs # ElevenLabs TTS
uv sync --extra cascade_deepgram # Deepgram ASR
uv sync --extra cascade_parakeet # Parakeet batch/RNNT ASR (Apple Silicon)
uv sync --extra cascade_voxtral_mlx # Voxtral ASR (Apple Silicon)
uv sync --extra cascade_nemotron # NeMo ASR (CUDA)
uv sync --extra cascade_gradium # Gradium TTS (Python β₯3.12)
uv sync --extra cascade_all # All cascade providers
```
Vision and head-tracking extras:
```bash
uv sync --extra yolo_vision # YOLO head-tracking
uv sync --extra mediapipe_vision # MediaPipe head-tracking
uv sync --extra local_vision # Local VLM (SmolVLM2)
uv sync --extra all_vision # All vision features
```
Combine extras freely:
```bash
uv sync --extra cascade --extra cascade_kokoro --extra cascade_gemini --extra yolo_vision --group dev
```
> **Tip:** Use `uv sync --frozen` to install from the lockfile without re-resolving.
</details>
<details>
<summary><b>Using pip</b></summary>
```bash
python -m venv .venv
source .venv/bin/activate
pip install -e ".[cascade]"
# Add providers
pip install -e ".[cascade_kokoro]"
pip install -e ".[cascade_gemini]"
# etc.
```
</details>
### Optional extras reference
| Extra | Purpose | Notes |
|-------|---------|-------|
| `cascade` | Base cascade pipeline (sounddevice, librosa, PyYAML) | Required for cascade mode |
| `cascade_parakeet_progressive` | Parakeet MLX progressive ASR | Apple Silicon only |
| `cascade_kokoro` | Kokoro local TTS | Any PyTorch platform |
| `cascade_gemini` | Google Gemini LLM | Requires `GEMINI_API_KEY` |
| `cascade_deepgram` | Deepgram streaming ASR | Requires `DEEPGRAM_API_KEY` |
| `cascade_elevenlabs` | ElevenLabs TTS | Requires `ELEVENLABS_API_KEY` |
| `cascade_parakeet` | Parakeet batch/RNNT ASR | Apple Silicon only |
| `cascade_voxtral_mlx` | Voxtral Mini 4B multilingual ASR | Apple Silicon only |
| `cascade_nemotron` | NeMo Parakeet/Nemotron ASR | CUDA GPU required |
| `cascade_silero_vad` | Silero VAD (torch-based) | Optional VAD backend |
| `cascade_gradium` | Gradium streaming TTS | Python β₯3.12, requires `GRADIUM_API_KEY` |
| `cascade_all` | All cascade providers | Excludes gradium (Python β₯3.12) |
| `local_vision` | Local VLM (SmolVLM2) via PyTorch/Transformers | GPU recommended |
| `yolo_vision` | YOLO head-tracking | CPU or GPU |
| `mediapipe_vision` | MediaPipe head-tracking | CPU |
| `all_vision` | All vision extras | β |
## Configuration
### Environment variables
Open the Gradio Settings panel to choose providers and save keys or local endpoint settings. Gradio cascade requires explicit ASR, LLM, and TTS choices because every runtime is different. The app writes those values to `.env`. You can also copy `.env.example` to `.env` and fill them manually:
If no `.env` is found near the working directory, the app falls back to `~/.config/settings/.env`. Keys stored there survive app reinstalls and updates.
For preconfigured installs, copy `config/examples/lyon_chatbox_cascade_setup.yaml` to `config/lyon_chatbox.yaml` or `lyon_chatbox.yaml`. You can also point `LYON_CHATBOX_CONFIG_FILE` to any YAML file. That file chooses providers and can include non-secret endpoint/model settings while `cascade.yaml` remains the provider-definition catalog. API keys still belong in `.env` or real environment variables.
| Variable | Used by |
|----------|---------|
| `OPENAI_API_KEY` | Whisper ASR, OpenAI Realtime ASR, GPT LLMs, OpenAI TTS |
| `GEMINI_API_KEY` | Gemini LLMs |
| `DEEPGRAM_API_KEY` | Deepgram ASR |
| `ELEVENLABS_API_KEY` | ElevenLabs TTS |
| `GRADIUM_API_KEY` | Gradium TTS |
| `HF_HOME` | Cache dir for Hugging Face models (default: `./cache`) |
| `HF_TOKEN` | Hugging Face access for gated models |
| `LYON_CHATBOX_CONFIG_FILE` | Optional path to a YAML setup config |
| `CASCADE_ASR_PROVIDER` | ASR provider override |
| `CASCADE_LLM_PROVIDER` | LLM provider override |
| `CASCADE_TTS_PROVIDER` | TTS provider override |
| `CASCADE_LLM_BASE_URL` | Local OpenAI-compatible LLM endpoint |
| `CASCADE_LLM_MODEL` | Local/OpenAI-compatible LLM model name |
| `CASCADE_LLM_API_KEY` | Optional local LLM token/API key |
| `CASCADE_ASR_MODEL` | ASR model override |
| `CASCADE_TTS_BASE_URL` | Local OpenAI-compatible TTS endpoint |
| `CASCADE_TTS_MODEL` | TTS model override |
| `CASCADE_TTS_API_KEY` | Optional local TTS token/API key |
| `CASCADE_TTS_VOICE` | TTS voice override |
| `LYON_CHATBOX_CUSTOM_PROFILE` | Select a profile (default: `default`) |
| `LYON_CHATBOX_EXTERNAL_PROFILES_DIRECTORY` | Path to external profiles |
| `LYON_CHATBOX_EXTERNAL_TOOLS_DIRECTORY` | Path to external tool modules |
| `AUTOLOAD_EXTERNAL_TOOLS` | Set `1` to auto-load all external tools |
### cascade.yaml
The `cascade.yaml` file at the project root controls which providers are used and their settings. Structure:
```yaml
asr:
provider: parakeet_mlx_progressive # Which ASR to use
cloud_providers:
whisper_openai:
module: whisper_openai
class: WhisperOpenAIASR
streaming: false
requires: [OPENAI_API_KEY]
model: whisper-1
local_providers:
parakeet_mlx_progressive:
module: parakeet_mlx_progressive
class: ParakeetMLXProgressiveASR
streaming: true
hardware: apple_silicon
# Provider-specific settings
model: mlx-community/parakeet-tdt-0.6b-v3
precision: float16
llm:
provider: gemini-2.5-flash-lite # Which LLM to use
temperature: 1.0
cloud_providers: { ... }
local_providers: { ... }
tts:
provider: kokoro # Which TTS to use
trim_silence: true
cloud_providers: { ... }
local_providers: { ... }
```
Change providers from the Gradio Settings panel, `cascade.yaml`, `.env`, or the CLI with `--asr-provider`, `--llm-provider`, or `--tts-provider`.
#### ASR providers
| Provider | Location | Streaming | Hardware | Install extra | API key |
|----------|----------|-----------|----------|---------------|---------|
| `parakeet_mlx_progressive` | Local | Yes | Apple Silicon | `cascade_parakeet_progressive` | β |
| `voxtral_mlx` | Local | Yes | Apple Silicon | `cascade_voxtral_mlx` | β |
| `parakeet_nemo_progressive` | Local | Yes | CUDA | `cascade_nemotron` | β |
| `nemotron` | Local | Yes | CUDA | `cascade_nemotron` | β |
| `deepgram` | Cloud | Yes | β | `cascade_deepgram` | `DEEPGRAM_API_KEY` |
| `openai_realtime_asr` | Cloud | Yes | β | β | `OPENAI_API_KEY` |
| `whisper_openai` | Cloud | No (batch) | β | β | `OPENAI_API_KEY` |
#### LLM providers
| Provider | Location | Model | Install extra | API key |
|----------|----------|-------|---------------|---------|
| `gemini-2.5-flash-lite` | Cloud | `gemini-2.5-flash-lite` | `cascade_gemini` | `GEMINI_API_KEY` |
| `gemini-3.1-flash-lite` | Cloud | `gemini-3.1-flash-lite-preview` | `cascade_gemini` | `GEMINI_API_KEY` |
| `gpt-4o-mini` | Cloud | `gpt-4o-mini` | β | `OPENAI_API_KEY` |
| `gpt-5.2-chat` | Cloud | `gpt-5.2-chat-latest` | β | `OPENAI_API_KEY` |
| `local_openai_compatible` | Local | User-selected | β | Optional |
#### TTS providers
| Provider | Location | Hardware | Install extra | API key |
|----------|----------|----------|---------------|---------|
| `kokoro` | Local | Any (PyTorch) | `cascade_kokoro` | β |
| `local_openai_compatible_tts` | Local/network | OpenAI-compatible server | β | Optional |
| `tts_openai` | Cloud | β | β | `OPENAI_API_KEY` |
| `elevenlabs` | Cloud | β | `cascade_elevenlabs` | `ELEVENLABS_API_KEY` |
| `gradium` | Cloud | β | `cascade_gradium` | `GRADIUM_API_KEY` |
## Running the app
> [!TIP]
> Make sure the Reachy Mini daemon is running before launching. See [Reachy Mini's SDK](https://github.com/pollen-robotics/reachy_mini/) for setup.
```bash
lyon-chatbox --gradio
```
### CLI options
| Option | Default | Description |
|--------|---------|-------------|
| `--gradio` | `False` | Launch Gradio web UI at http://127.0.0.1:7860/. Without this, runs in console mode with VAD. |
| `--asr-provider NAME` | from yaml | Override ASR provider (e.g. `deepgram`, `whisper_openai`) |
| `--llm-provider NAME` | from yaml | Override LLM provider (e.g. `gpt-4o-mini`, `gemini-2.5-flash-lite`) |
| `--tts-provider NAME` | from yaml | Override TTS provider (e.g. `kokoro`, `elevenlabs`) |
| `--head-tracker {yolo,mediapipe}` | `None` | Enable head-tracking. Requires the matching vision extra. |
| `--no-camera` | `False` | Run without camera. |
| `--local-vision` | `False` | Use local VLM (SmolVLM2) instead of cloud vision. Requires `local_vision` extra. |
| `--autotest [FILE]` | β | Run automated testing with text utterances (default file: `cascade/autotest.txt`). |
| `--realtime` | `False` | Use OpenAI realtime audio-to-audio API instead of cascade. |
| `--robot-name NAME` | `None` | Connect to a specific robot when multiple daemons run on the same subnet. |
| `--debug` | `False` | Verbose logging. |
### Examples
```bash
# Gradio UI with YOLO head-tracking
lyon-chatbox --gradio --head-tracker yolo
# Console mode (no UI, VAD-based)
lyon-chatbox
# Override providers from CLI
lyon-chatbox --gradio --asr-provider deepgram --llm-provider gpt-4o-mini
# Audio-only (no camera)
lyon-chatbox --gradio --no-camera
# Automated testing
lyon-chatbox --autotest
```
## Profiles
Profiles define the robot's personality: what it says, how it sounds, and which tools it can use.
Each profile is a folder under `src/lyon_chatbox/profiles/<name>/` containing:
| File | Required | Purpose |
|------|----------|---------|
| `instructions.txt` | Yes | System prompt β the robot's personality and behavior rules |
| `tools.txt` | Recommended | Enabled tools, one per line. Falls back to `default/tools.txt` if missing. |
| `voice.txt` | Optional | TTS voice name override (single line) |
| `reactions.yaml` | Optional | Live reaction triggers (see [Live reactions](#live-reactions)) |
| `*.py` | Optional | Custom tool implementations |
### Selecting a profile
- **Environment variable:** `LYON_CHATBOX_CUSTOM_PROFILE=pirate` in `.env`
- **Gradio UI:** Open the "Personality" accordion to switch profiles, edit instructions, or create new ones.
### Template placeholders in instructions.txt
Reuse shared prompt snippets by referencing files under `src/lyon_chatbox/prompts/`:
```
[passion_for_lobster_jokes]
[identities/witty_identity]
```
### Locked profile mode
Set `LOCKED_PROFILE` in `src/lyon_chatbox/config.py` to lock the app to a single profile. The Gradio UI shows "(locked)" and disables profile editing. Useful for dedicated app variants.
## Live reactions
Reactions let the robot respond to keywords or entities in real time β *while the user is still speaking* β without waiting for the LLM.
Define them in `profiles/<name>/reactions.yaml`:
```yaml
- name: music_excitement
callback: excited_about_music
trigger:
words: [music, guitar, piano, drum, violin]
- name: food_reaction
callback: react_to_food_entity
trigger:
entities: [food]
repeatable: true
- name: groovy_dance
callback: do_groovy_dance
trigger:
all:
- words: [danc*]
- words: [groov*]
- name: reachy_name
callback: react_to_name
trigger:
words: [reachy, richie, reechy]
params:
emotion: helpful1
```
### Trigger types
| Type | Description | Example |
|------|-------------|---------|
| `words` | Keyword/glob match on transcript | `[music, danc*, "grand piano"]` |
| `entities` | Named entity recognition via GLiNER | `[food, person, location]` |
| `all` | Boolean AND β all sub-triggers must match | See `groovy_dance` above |
### Behavior
- Reactions fire **at most once per conversation turn** by default.
- Set `repeatable: true` to allow multiple triggers per turn (deduplicated by entity text for entity triggers).
- `params` are passed as `**kwargs` to the callback.
### Callback signature
Each `callback` value maps to a Python module in the profile folder exporting an async function:
```python
async def my_callback(deps: ToolDependencies, match: TriggerMatch, **kwargs) -> None:
...
```
`match.words` contains matched keywords; `match.entities` contains matched entities (with `.text`, `.label`, `.confidence`).
## LLM tools
Tools the LLM can call during a conversation:
| Tool | Action |
|------|--------|
| `speak` | Synthesize and play a speech segment (used internally by the pipeline) |
| `dance` | Queue a dance from the dances library |
| `stop_dance` | Clear queued dances |
| `play_emotion` | Play a recorded emotion clip from [pollen-robotics/reachy-mini-emotions-library](https://huggingface.co/datasets/pollen-robotics/reachy-mini-emotions-library) |
| `stop_emotion` | Clear queued emotions |
| `move_head` | Move head to a named position (left/right/up/down/front) |
| `see_image_through_camera` | Capture a camera frame and send it to the LLM for analysis |
| `describe_camera_image` | Describe the current camera view |
| `head_tracking` | Enable/disable head-tracking (requires `--head-tracker`) |
| `task_status` | Check status of a background task |
| `task_cancel` | Cancel a running background task |
| `do_nothing` | Explicitly remain idle |
Profiles can also define custom tools (e.g. `turn_left`, `turn_right`, `center_position` in the default profile).
## Advanced features
<details>
<summary><b>External profiles and tools</b></summary>
Store profiles and tools outside the source tree:
```text
external_content/
βββ external_profiles/
β βββ my_profile/
β βββ instructions.txt
β βββ tools.txt
β βββ voice.txt
βββ external_tools/
βββ my_custom_tool.py
```
Set in `.env`:
```env
LYON_CHATBOX_CUSTOM_PROFILE=my_profile
LYON_CHATBOX_EXTERNAL_PROFILES_DIRECTORY=./external_content/external_profiles
LYON_CHATBOX_EXTERNAL_TOOLS_DIRECTORY=./external_content/external_tools
```
- **Default mode:** `tools.txt` must list every tool explicitly. Names resolve against built-in tools first, then external tools.
- **Auto-load mode** (`AUTOLOAD_EXTERNAL_TOOLS=1`): all `*.py` modules in the external tools directory are loaded automatically.
</details>
<details>
<summary><b>Multiple robots on the same subnet</b></summary>
```bash
lyon-chatbox --robot-name <name>
```
`<name>` must match the daemon's `--robot-name` value.
</details>
<details>
<summary><b>Autotest mode</b></summary>
Run the full pipeline with synthetic text utterances instead of a microphone:
```bash
lyon-chatbox --autotest
lyon-chatbox --autotest my_test_script.txt
```
Each line in the test file is treated as a user utterance. Useful for end-to-end testing without audio hardware.
</details>
<details>
<summary><b>OpenAI Realtime mode (legacy)</b></summary>
The original audio-to-audio mode using OpenAI's realtime API is still available:
```bash
lyon-chatbox --realtime --gradio
```
This bypasses the cascade pipeline entirely. Requires `OPENAI_API_KEY`.
</details>
## Contributing
We welcome bug fixes, features, profiles, and documentation improvements. Please review our
[contribution guide](CONTRIBUTING.md) for branch conventions, quality checks, and PR workflow.
Quick start:
- Fork and clone the repo
- Follow the [installation steps](#installation) (include the `dev` dependency group)
- Run contributor checks listed in [CONTRIBUTING.md](CONTRIBUTING.md)
## License
Apache 2.0 |