| # Environment variables with secrets | |
| .env | |
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| # Virtual environments (local project venv) | |
| .venv/ | |
| venv/ | |
| ENV/ | |
| # UV lock file | |
| uv.lock | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Input documents (PDFs not allowed in HF Spaces) | |
| input/*.pdf | |
| input/ | |
| # Downloaded GAIA question files | |
| input/* | |
| # Runtime cache (not in git, served via app download) | |
| _cache/ | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| # Test fixtures - binary files | |
| test/fixtures/*.png | |
| test/fixtures/*.jpg | |
| test/fixtures/*.jpeg | |
| # Build | |
| build/ | |
| dist/ | |
| *.egg-info/ | |