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 🏭
56 lines
417 B
Plaintext
56 lines
417 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# Credentials
|
|
*.json
|
|
!config.json
|
|
!hotword_config.json
|
|
credentials.json
|
|
.env
|
|
.secrets
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Audio files
|
|
*.wav
|
|
*.mp3
|
|
*.ogg
|
|
*.flac
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Database
|
|
*.db
|
|
!sensor_data.db
|
|
|
|
# Exports
|
|
exports/
|
|
|
|
# Test files
|
|
test_*.wav
|
|
test_output.*
|