Files
claude-voice-experiment/voices.yaml
mikael-lovqvists-claude-agent a7fa2fd218 Add Pending_Query class and voice interaction improvements
- lib/pending-query.mjs: new state machine for query accumulation
  wake word, silence timer, send/cancel/pause/resume, instant dispatch,
  mode toggle (always listen / stop listening), mode query
- query-demo.mjs: refactored to use Pending_Query; wake word on by default
  with silence timer; chimes for dispatch/working/cancel/activate
- tts-server.mjs: track last_speak_at, expose /activity endpoint,
  chime playback via Python queue (soundfile + librosa), preload on startup
- chatterbox-server.py: chime and preload commands via stdin protocol
- lib/chatterbox-tts.mjs: play_chime and preload_chime methods
- test-chime.mjs: simple chime test script
- voices.yaml: configured ready/cancel/working/dispatch chimes
- CLEANUP-PLAN.md: updated with current state, command vocabulary, future plans

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 03:59:11 +00:00

66 lines
1.9 KiB
YAML

# Named voices for TTS server.
# Switch via: POST /voice {"name": "rommie"}
# List via: GET /voices
voices:
rommie:
path: /home/devilholk/Documents/rommie-sample.wav
description: Rommie - Andromeda ship AI / android
archangel:
path: /home/devilholk/Documents/archangel.ogg
description: Arch Angel from Air Wolf
marella:
path: /home/devilholk/Documents/murella.ogg
description: Marella from Air Wolf
chuin:
path: /home/devilholk/Documents/chuin.ogg
description: Chuin from Remo Williams - The adventure begins
harold-w-smith:
path: /home/devilholk/Documents/cure-leader.ogg
description: Harold W. Smith from Remo Williams - The adventure begins
penny-parker:
path: /home/devilholk/Documents/penny.ogg
description: Penny from MacGyver
santini:
path: /home/devilholk/Documents/santini.ogg
description: Santini from Air Wolf
gosalyn:
path: /home/devilholk/Documents/gasalin.ogg
description: Gosalyn from Darkwing Duck
darkwing-duck:
path: /home/devilholk/Documents/dwd.ogg
description: Darkwing Duck
belitski:
path: /home/devilholk/Documents/slipstream2.ogg
description: Belitski from Slipstream
ivanova:
path: /home/devilholk/Documents/ivanova.ogg
description: Susan Ivonavo from Babylon 5
sheila:
path: /home/devilholk/Documents/darkness-woman.ogg
description: Sheila from Army of Darkness
# Add more voices as clips become available
# System event chimes — map event name to audio file path.
# Falls back to chimes/<name>.wav or .ogg if not listed here.
chimes:
ready: /home/devilholk/Documents/ready.ogg
cancel: /home/devilholk/Documents/abort.ogg
working: /home/devilholk/Documents/working.ogg
dispatch: /home/devilholk/Documents/dispatch.ogg
# dispatch: /home/devilholk/sounds/trek-send.wav
# cancel: /home/devilholk/sounds/cancel.ogg
# error: /home/devilholk/sounds/error.ogg