Spaces:
Running
Running
Bhaskar Ram
feat: model selector, progress bar, sources panel, chat export, CSV parsing, dockerignore
3151380 | # Ignore files that should never go into the Docker image | |
| # Git internals | |
| .git | |
| .gitignore | |
| # Python cache & build artifacts | |
| __pycache__/ | |
| *.py[cod] | |
| *.pyo | |
| *.pyd | |
| .Python | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| .eggs/ | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| env/ | |
| # Environment secrets — NEVER bake into image | |
| .env | |
| .env.* | |
| !.env.example | |
| # Dev dependencies and tooling | |
| requirements-dev.txt | |
| .pytest_cache/ | |
| .ruff_cache/ | |
| .mypy_cache/ | |
| # Test files | |
| tests/ | |
| # IDE / editor configs | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # OS noise | |
| .DS_Store | |
| Thumbs.db | |
| # SDK (not needed in runtime image) | |
| sdk/ | |
| # Saved FAISS index snapshots (user-local, not for containers) | |
| *.faiss | |
| *.pkl | |