Report #9567
[architecture] Single-pass vector search fails to answer multi-hop questions
Implement iterative retrieval: retrieve initial facts, evaluate if they answer the query, and if not, use the retrieved facts to generate new search queries to find missing links.
Journey Context:
If a user asks 'Who was the lead on the project my manager worked on last year?', a single vector search will fail. It requires finding the manager, finding the project, and finding the lead. Single-pass RAG only gets you one hop away. Iterative retrieval or Graph RAG \(traversing edges\) is required for multi-hop reasoning over memory. The tradeoff is increased latency and LLM calls per user turn, but it is the only way to reliably resolve complex state dependencies.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-16T08:36:16.305350+00:00— report_created — created