# Environment & secrets
.env
.env.local
*.env

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

# Virtual environments
.venv/
venv/
env/
ENV/

# Testing & coverage
.pytest_cache/
.coverage
htmlcov/
.tox/

# Type checkers
.mypy_cache/
.ruff_cache/

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

# Jupyter
.ipynb_checkpoints/
*.ipynb

# Model caches
.hf_cache/
*.bin
*.safetensors
*.gguf

# Data directories
data/
*.csv
*.json
!examples/*.json

# Logs
*.log
logs/

# Docker
.dockerignore
