| # Byte-compiled / cache | |
| __pycache__/ | |
| *.py[cod] | |
| *.egg-info/ | |
| .pytest_cache/ | |
| .mypy_cache/ | |
| .ruff_cache/ | |
| # Virtual envs | |
| .venv*/ | |
| venv*/ | |
| env/ | |
| # Secrets — never commit | |
| .env | |
| .env.local | |
| .env.*.local | |
| # Data — only keep folder structure, never raw payloads | |
| data/raw/* | |
| !data/raw/.gitkeep | |
| data/processed/* | |
| !data/processed/.gitkeep | |
| # MLflow / experiment tracking | |
| mlruns/ | |
| mlartifacts/ | |
| # Claude Code / agent tooling | |
| .sixth/ | |
| .worktrees/ | |
| # IDE | |
| .idea/ | |
| .vscode/ | |
| .DS_Store | |
| # RAG knowledge base — ignore user-supplied content; allow only README/.gitkeep | |
| data/knowledge_base/* | |
| !data/knowledge_base/README.md | |
| !data/knowledge_base/.gitkeep | |
| # RAG built artifacts | |
| data/processed/faiss_index/ | |
| # Plan: external-assets-integration — clinical RAG corpus and pre-built TF-IDF index | |
| data/external_rag/ | |
| # User-local files (presentations, Office lock files) | |
| *.pptx | |
| ~$* | |