# Environment — never commit API keys
.env
.env.local
.env.*.local

# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
.venv/
venv/
env/
pip-wheel-metadata/

# Data & storage — ChromaDB persists here
data/

# Logs
logs/

# IDE
.vscode/
.idea/
*.swp
*.swo

# macOS
.DS_Store

# pytest / coverage
.pytest_cache/
.coverage
htmlcov/
.ruff_cache/

# Jupyter
.ipynb_checkpoints/

# Distribution
*.tar.gz
*.whl
