# ── Environment / Secrets ────────────────
.env
!.env.example
.venv/
venv/
env/

# ── Python ───────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
dist/
build/
*.egg
*.whl
pip-log.txt

# ── IDE ──────────────────────────────────
.vscode/settings.json
.vscode/launch.json
.idea/
*.swp
*.swo
*~
*.sublime-*

# ── OS ───────────────────────────────────
.DS_Store
Thumbs.db
Desktop.ini
ehthumbs.db

# ── Models (downloaded at runtime) ───────
/models/
*.onnx
*.bin
*.pt

# ── Docker ───────────────────────────────
docker-compose.override.yml

# ── Logs ─────────────────────────────────
*.log
logs/

# ── Coverage / Test artifacts ────────────
htmlcov/
.coverage
.coverage.*
coverage.xml
.pytest_cache/
test_out*.txt
full_results.txt
integration_results.txt

# ── Temp audio files (test/debug output) ─
conv_ai_response.mp3
conv_user_audio.mp3
test_tts_output.mp3
*.wav
!tests/**/*.wav

# ── Redis ────────────────────────────────
dump.rdb

# ── Node (client SDK) ───────────────────
client/node_modules/
client/dist/
builder/node_modules/
widget/node_modules/

# ── Database ─────────────────────────────
*.db
*.db-journal

# ── Temp working files ───────────────────
temp.md

# ── Misc ─────────────────────────────────
*.bak
*.tmp

ins.md