# Secrets & local state — never commit
.env
.env.*
!.env.example
*.json
!**/.vscode/*.json
chat_memory.db
*.db
*.csv
result.csv
*.egg-info/
# Build artifacts
dist/
build/
# Python
__pycache__/
**/__pycache__/
*.pyc
.venv/
venv/
.pytest_cache/

# Editor
.idea/
.vscode/
