- tts.py: voice_sample param replaces preset voice, add validate_voice_sample(), add record_voice_sample() with CLI (python tts.py record), validate .wav format/duration/channels on init - main.py: warn at startup if voice sample missing, show voice status in banner - .env.example: QWEN_TTS_VOICE now points to voices/echo_voice.wav - .gitignore: voice samples gitignored (personal data) - voices/README.md: instructions for recording & placing voice samples
45 lines
482 B
Plaintext
45 lines
482 B
Plaintext
# Echo Voice Assistant — Git Ignore
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# Model weights (large files — download separately)
|
|
models/
|
|
!models/.gitkeep
|
|
|
|
# Generated audio
|
|
audio_output/
|
|
!audio_output/.gitkeep
|
|
|
|
# Voice samples (personal — keep local)
|
|
voices/
|
|
!voices/.gitkeep
|
|
!voices/README.md
|
|
|
|
# Environment & secrets
|
|
.env
|
|
.env.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|