69 lines
669 B
Plaintext
69 lines
669 B
Plaintext
# Python caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Distribution / packaging
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
pip-wheel-metadata/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.env
|
|
.env.*
|
|
|
|
# Pytest / tooling
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.coverage
|
|
htmlcov/
|
|
coverage.xml
|
|
|
|
# IDEs and editors
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
*.log
|
|
|
|
# Qdrant/DB data (if accidentally checked in)
|
|
qdrant_data/
|
|
|
|
# Model weights & caches
|
|
*.pt
|
|
*.pth
|
|
*.bin
|
|
*.ckpt
|
|
|
|
# Numpy arrays
|
|
*.npy
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Misc
|
|
*.sqlite3
|
|
|
|
# Local secrets
|
|
*.pem
|
|
*.key
|
|
secrets.json
|
|
|
|
# End of file
|