Skip to content

Commit ce56cfb

Browse files
Juan PabloJuan Pablo
authored andcommitted
docs: document how to fetch references/ clones
Closes the one gap left from the original plan's Phase 0: the .gitignore comment pointed to the README for fetch instructions, but they were never written. Adds the three clone commands (MONAI, MedCAT, LangGraph) with a note that they're only needed when extending those integrations, not for running or testing the app.
1 parent 47574b1 commit ce56cfb

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,15 @@ clinical-ai-copilot/
155155
└── references/ # Cloned open-source projects (read-only reference; not committed — see .gitignore)
156156
```
157157

158+
`references/` holds read-only clones used for API reference while building the MONAI/MedCAT/LangGraph wrappers in `intelligence/`. Not committed (see `.gitignore`) and not required to run or test the app — clone them only if you're extending those integrations:
159+
160+
```bash
161+
mkdir -p references
162+
git clone --depth 1 https://github.com/Project-MONAI/MONAI.git references/ref-monai-medical-imaging
163+
git clone --depth 1 https://github.com/CogStack/MedCAT.git references/ref-medcat-nlp
164+
git clone --depth 1 https://github.com/langchain-ai/langgraph.git references/ref-langgraph-agents
165+
```
166+
158167
## Docker
159168

160169
```bash

0 commit comments

Comments
 (0)