Spaces:
Running
Running
| # Git files | |
| .git/ | |
| .gitignore | |
| .gitattributes | |
| # Python cache and bytecode | |
| __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 | |
| # Node modules and built frontend | |
| frontend/node_modules/ | |
| frontend/dist/ | |
| # IDE/editor files | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # OS generated files | |
| .DS_Store | |
| .DS_Store? | |
| ._* | |
| .Spotlight-V100 | |
| .Trashes | |
| ehthumbs.db | |
| Thumbs.db | |
| # Documentation files (comprehensive) | |
| *.md | |
| README* | |
| docs/ | |
| *.txt | |
| *.log | |
| # Development and testing files | |
| tests/ | |
| test_*.py | |
| *_test.py | |
| pytest.ini | |
| coverage/ | |
| .tox/ | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| *.sh | |
| # Cache directories and files | |
| cache/ | |
| *.pkl | |
| *.cache | |
| # Development files and configurations | |
| .env.* | |
| docker-compose.override.yml | |
| .dockerignore | |
| # Large evaluation directory (contains 600+ cache/report files) | |
| evaluation/ | |
| evaluation_results/ | |
| evaluation_results.json | |
| # Research and academic files | |
| research/ | |
| huggingface/ | |
| # Development scripts and examples | |
| scripts/ | |
| examples/ | |
| tools/ | |
| setup_*.py | |
| install_*.sh | |
| deploy_*.sh | |
| # Package manager files | |
| uv.lock | |
| package-lock.json | |
| yarn.lock | |
| pnpm-lock.yaml | |
| # Jupyter notebooks and data | |
| *.ipynb | |
| data/ | |
| notebooks/ | |
| # Large model files | |
| *.bin | |
| *.safetensors | |
| *.onnx | |
| *.pt | |
| *.pth | |
| models/ | |
| checkpoints/ | |
| # Documentation and assets | |
| docs/ | |
| assets/ | |
| images/ | |
| screenshots/ | |
| *.png | |
| *.jpg | |
| *.jpeg | |
| *.gif | |
| *.svg | |
| *.ico | |
| # Academic/research file formats | |
| *.tex | |
| *.aux | |
| *.bbl | |
| *.blg | |
| *.fdb_latexmk | |
| *.fls | |
| *.synctex.gz | |
| *.bib | |
| *.bst | |
| *.sty | |
| # Backup and archive files | |
| *.bak | |
| *.zip | |
| *.tar | |
| *.tar.gz | |
| *.rar | |
| # Environment and configuration backups | |
| .env.backup | |
| .env.example | |
| # Temporary files | |
| tmp/ | |
| temp/ | |
| # Development JSON files and debug files | |
| test_*.json | |
| *_debug.json | |
| example*.json | |
| # Rule-based method data (too large for Git) | |
| agentgraph/methods/rule-based/# Database files | |
| *.db | |
| *.sqlite* | |
| db/ | |
| datasets/db/ | |