| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| .eggs/ | |
| *.egg | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| env/ | |
| # Secrets / local config | |
| .env | |
| .env.* | |
| # Model weights (managed separately) | |
| checkpoints/ | |
| *.pt | |
| *.pth | |
| *.gguf | |
| *.bin | |
| # Run artifacts | |
| traces/ | |
| *.mp4 | |
| # Dev tooling | |
| .pytest_cache/ | |
| .ruff_cache/ | |
| .DS_Store | |
| .claude/ | |
| # Git | |
| .git/ | |