# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

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

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

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

# OS
.DS_Store
Thumbs.db

# Secrets
.env
.env.local
*.secret

# Models and data
*.pt
*.bin
*.safetensors
*.onnx
data/
checkpoints/
runs/
logs/
wandb/

# Exception: ship the quantized demo model
!web/model.onnx
!web/tokenizer.json

# HuggingFace cache
.cache/
