# 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 envs
.venv/
venv/
ENV/

# Test + cache
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.cache
.ruff_cache/
.mypy_cache/

# Generated data (intentionally git-ignored — regenerate with the CLI)
data/synthetic_train/
# Exclude generated results, EXCEPT the adaptive-budget experiment: it corrects
# a previously published claim, so the raw runs behind it must be auditable.
# (Must exclude the contents, not the directory, or git will not descend to
# find the negated path below.)
data/results/*
!data/results/adaptive_budget/
logs/
*.jsonl

# OS
.DS_Store
Thumbs.db

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

# Local config
.env
.env.local

# leaderboard run checkpoints (scratch state; the result JSON is the artifact)
leaderboard/.checkpoints/
