Claw - AI Now Inc 1662bc141a Initial commit: Bilingual Voice Assistant for Google AIY Voice Kit V1
Features:
- Bilingual support (English/Mandarin Chinese)
- Hotword detection: 'Hey Osiris' / '你好 Osiris'
- Music playback control (MP3, WAV, OGG, FLAC)
- OpenClaw integration for AI responses
- Google AIY Voice Kit V1 compatible
- Text-to-speech in both languages
- Voice command recognition
- Raspberry Pi ready with installation script

AI Now Inc - Del Mar Demo Unit 🏭
2026-03-01 00:02:49 -08:00

38 lines
835 B
JSON

{
"openclaw": {
"enabled": true,
"ws_url": "ws://192.168.1.100:18790",
"api_key": "your_api_key_here",
"reconnect_interval": 5
},
"speech": {
"language": "auto",
"hotword": "hey assistant|你好助手",
"hotword_sensitivity": 0.5,
"recognition_timeout": 5,
"offline_mode": false
},
"music": {
"library_path": "/home/pi/Music",
"default_volume": 0.7,
"scan_interval": 300,
"supported_formats": [".mp3", ".wav", ".ogg", ".flac"]
},
"tts": {
"english_voice": "en-US-Standard-A",
"chinese_voice": "zh-CN-Standard-A",
"speed": 1.0,
"pitch": 0
},
"audio": {
"input_device": "default",
"output_device": "default",
"sample_rate": 16000,
"channels": 1
},
"logging": {
"level": "INFO",
"file": "/var/log/voice-assistant.log"
}
}