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
Goal: the LLM (strong class, per ADR-0002) answers using only the top-k
reranked memories, formatted as a numbered evidence list; every factual span
carries a [m-id] citation; verbatim where exactness matters (numbers, names).
Per ADR-0005 / §05.5.
Why now: reconstruction is the only place an LLM touches the read path — it
must paraphrase-with-provenance, never answer from parametric knowledge.
How to do it
Assemble top-k as [{m-id, summary, ts, (text?)}]; prompt: answer only from this
list, cite the id of every claim; if unsupported, say "I couldn't find that".
Goal: the LLM (
strongclass, per ADR-0002) answers using only the top-kreranked memories, formatted as a numbered evidence list; every factual span
carries a
[m-id]citation; verbatim where exactness matters (numbers, names).Per ADR-0005 / §05.5.
Why now: reconstruction is the only place an LLM touches the read path — it
must paraphrase-with-provenance, never answer from parametric knowledge.
How to do it
[{m-id, summary, ts, (text?)}]; prompt: answer only from thislist, cite the id of every claim; if unsupported, say "I couldn't find that".
strongclass (recall→strong, feat(platform): wire encoder→fast, recall→strong + assert ingest is fast-only #108). Return{answer, citations[], used_indexes, candidates_seen, reconstruct}.Acceptance criteria
🔗 Sequencing