| # Python cache / build artifacts | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| .pytest_cache/ | |
| .mypy_cache/ | |
| .ruff_cache/ | |
| .coverage | |
| htmlcov/ | |
| dist/ | |
| build/ | |
| *.egg-info/ | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| env/ | |
| # Local secrets and environment files | |
| .env | |
| .env.* | |
| !.env.example | |
| # OS / editor noise | |
| .DS_Store | |
| .idea/ | |
| .vscode/ | |
| # Agent runtime caches and outputs | |
| runs/ | |
| logs/ | |
| *.log | |
| data/ | |
| # Hugging Face / Gradio local runtime artifacts | |
| .gradio/ | |
| .huggingface/ | |
| hf_cache/ | |
| # Temporary scratch files | |
| tmp/ | |
| temp/ | |
| gaia_local_eval.py | |