# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/
*.egg

# Virtual envs
.venv/
venv/
env/

# Testing / coverage
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
coverage.xml

# Secrets & local config
.env
.env.*
!.env.example

# Editors / OS
.vscode/
.idea/
.DS_Store
Thumbs.db

# Project artifacts
*.sqlite
*.sqlite3
dead_letter*.jsonl

# Internal planning / study docs (not for the public repo)
IMPLEMENTAION.md
module_notes/

# Personal / private example data (never push the owner's real resume)
examples/resume_rag/resume.pdf
examples/resume_rag/resume.txt
# Generated demo/eval artifacts
examples/**/report.html
report.html
