File size: 622 Bytes
c922f8b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# Hugging Face Space ignore file
# Files matching these patterns will be excluded from the Space
# Temporary files and caches
__pycache__/
*.py[cod]
*$py.class
.ipynb_checkpoints/
.DS_Store
# Environment and sensitive files
.env
*.env
credentials.json
secrets.json
api_keys.json
# Logs and generated files
*.log
logs/
# Test outputs and results
test_output/
test_results/
test_reports/
# Large data files
*.csv
*.pkl
*.h5
*.model
# Development files
.git/
.github/
.gitignore
.vscode/
.idea/
# Specific GAIA files to exclude
src/gaia/tests/performance/**
src/gaia/tests/integration/**
src/gaia/tests/real_world/**
|