Skip to content

Commit 9128e12

Browse files
authored
Merge pull request #15 from bacemtayeb/docs/data-model-wording
docs: tidy implementation-order wording in data-model
2 parents f824c7e + f214d08 commit 9128e12

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/data-model.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class AnalysisConfig(BaseModel):
126126
## 3. Module interfaces — function signatures
127127

128128
These are the only public functions each module exposes. Anything else is private.
129-
Stick to these signatures; if Claude Code drifts, point it back here.
129+
Stick to these signatures; if an implementation drifts, point it back here.
130130

131131
### `ingest.py`
132132
```python
@@ -233,7 +233,7 @@ This CSV is the centrepiece table of the report.
233233

234234
---
235235

236-
## 6. Order of implementation (Claude Code's worklist)
236+
## 6. Order of implementation
237237

238238
1. `types.py` — write this first, completely. Everything else imports from it.
239239
2. `ingest.py` + tests against a fixture PDF and a fixture string.
@@ -248,4 +248,4 @@ This CSV is the centrepiece table of the report.
248248
11. `scripts/train_fusion.py` — fits the LR, pickles it, replaces the identity fusion.
249249
12. Real models swapped in last, one signal at a time, verifying on HPC.
250250

251-
**Rule for Claude Code: never run the real models in tests.** Mock at the module boundary. Real-model runs happen only in `scripts/evaluate.py` on HPC.
251+
**Rule: never run the real models in tests.** Mock at the module boundary. Real-model runs happen only in `scripts/evaluate.py` on HPC.

0 commit comments

Comments
 (0)