# Secrets — never commit
.env
.env.*
!.env.example

# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/
.venv/
venv/
.mypy_cache/
.pytest_cache/
.ruff_cache/
.coverage
htmlcov/
coverage.xml

# Data / local stores (runtime, never committed)
data/
*.db
*.db-wal
*.db-shm
cold_store/
embedding_cache/
bm25_index/

# Generated artifacts
*.pdf
benchmark_results/

# IDE / OS
.DS_Store
.idea/
.vscode/
*.swp
