Skip to content

Commit d379cb4

Browse files
committed
docs: add audit matrix next steps
Signed-off-by: Ho Lim <subhoya@gmail.com>
1 parent 00aa0b8 commit d379cb4

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

docs/inference/model-capability-audit.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,3 +118,9 @@ Do not leave placeholder text in a completed row.
118118

119119
- `nemoclaw-blueprint/model-specific-setup/README.md` documents where model-specific setup belongs once an intervention is justified.
120120
- `docs/inference/tool-calling-reliability` explains the local inference tool-call failure mode that audit rows should classify separately from provider connectivity.
121+
122+
## Next Steps
123+
124+
- [Inference Options](inference-options) for choosing a provider path before adding audit evidence.
125+
- [Tool-Calling Reliability](tool-calling-reliability) for separating provider connectivity from model tool-use behavior.
126+
- [Architecture](../reference/architecture) for the model-specific setup registry location.

test/model-capability-audit-doc.test.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,13 @@ describe("model capability audit doc (#3123)", () => {
6565
"_build/agent-variants/inference/model-capability-audit.hermes.generated.mdx",
6666
);
6767
});
68+
69+
it("keeps next-step links for related inference docs", () => {
70+
const markdown = fs.readFileSync(auditDocPath, "utf8");
71+
72+
expect(markdown).toContain("## Next Steps");
73+
expect(markdown).toContain("[Inference Options](inference-options)");
74+
expect(markdown).toContain("[Tool-Calling Reliability](tool-calling-reliability)");
75+
expect(markdown).toContain("[Architecture](../reference/architecture)");
76+
});
6877
});

0 commit comments

Comments
 (0)