You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replaces leftover `guardrails` variable name with `pipeline` in
CognitivePipeline README and tests. Rewrites the remaining
"multi-stage guardrails" references in ingest-router JSDoc plus the
memory-router README link text to point at "Cognitive Pipeline"
instead. No behavior change.
Copy file name to clipboardExpand all lines: src/memory-router/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -250,7 +250,7 @@ Calibrating your own cost-points takes one sweep per backend across a representa
250
250
251
251
-`@framers/agentos/query-router` — general Q&A routing (vector search / graph / keyword). Sibling primitive; different use case (ask-a-question vs recall-past-context).
252
252
-`@framers/agentos/memory` — the underlying Memory + HybridRetriever + SessionRetriever primitives the canonical-hybrid backend calls.
253
-
-`@framers/agentos/core/guardrails` — output-stage guardrails. MemoryRouter is the input-stage guardrail that picks architecture; core/guardrails validate the output.
253
+
-`@framers/agentos/core/guardrails` — output-stage guardrails. MemoryRouter is the recall-stage orchestrator that picks architecture; core/guardrails validate the output.
254
254
-`@framers/agentos-ext-grounding-guard` — output-stage grounding judge for retrieved-evidence-backed answers.
255
255
256
-
Together, these form the multi-stage guardrails pattern: `ingest → memory-router → retrieve → read → core/guardrails + grounding-guard`. Each stage is an LLM-as-judge decision point with its own interface.
256
+
Together, the router stages form the Cognitive Pipeline pattern: `ingest-router → memory-router → read-router`. The ingest, recall, and read stages are LLM-as-judge orchestration points with their own interfaces. In a full app, `core/guardrails` and `agentos-ext-grounding-guard` run downstream as safety/policy validators.
0 commit comments