# Git | |
.git | |
.gitignore | |
# Python | |
__pycache__ | |
*.pyc | |
*.pyo | |
*.pyd | |
.Python | |
env | |
pip-log.txt | |
pip-delete-this-directory.txt | |
.tox | |
.coverage | |
.coverage.* | |
.cache | |
nosetests.xml | |
coverage.xml | |
*.cover | |
*.log | |
.git | |
.mypy_cache | |
.pytest_cache | |
.hypothesis | |
# Virtual environments | |
.env | |
.venv | |
env/ | |
venv/ | |
ENV/ | |
env.bak/ | |
venv.bak/ | |
# IDE | |
.vscode | |
.idea | |
*.swp | |
*.swo | |
*~ | |
# OS | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
# Project specific | |
cache/ | |
logs/ | |
*.log | |
temp/ | |
tmp/ | |
uploads/ | |
.env.local | |
config-production.yaml | |
config-local.yaml | |
# Model files (too large for containers) | |
models/ | |
embeddings/ | |
*.bin | |
*.safetensors | |
# Testing | |
.pytest_cache/ | |
htmlcov/ | |
.tox/ | |
.nox/ | |
# Documentation | |
docs/_build/ | |
site/ | |
# Development files | |
requirements-dev.txt | |
tests/ | |
scripts/test_*.py | |
.pre-commit-config.yaml | |
# Jupyter | |
.ipynb_checkpoints/ | |
# Large files | |
*.zip | |
*.tar.gz | |
*.docx | |
examples/large_* |