Spaces:
Sleeping
Sleeping
| # Virtual Environments | |
| venv/ | |
| env/ | |
| # Python | |
| __pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| .Python | |
| env/ | |
| venv/ | |
| ENV/ | |
| env.bak/ | |
| venv.bak/ | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Planning Documents (personal notes, drafts, etc.) | |
| planning/ | |
| # Development Testing Tools | |
| dev-tools/query-expansion-tests/ | |
| # Local Development (temporary files) | |
| *.log | |
| *.tmp | |
| .env.local | |
| .env | |
| # Ignore local ChromaDB persistence (binary DB files). These should not be | |
| # committed; remove them from history before pushing to remote Spaces. | |
| data/chroma_db/ | |
| data/chroma_db/* | |