Report #101417
[cost\_intel] Adding a reasoning model to RAG before fixing retrieval quality
Invest in retrieval first—better embeddings, rerankers, query expansion, and hybrid search—before escalating to reasoning models. Reasoning models cannot retrieve missing information; they confabulate from irrelevant context.
Journey Context:
A common anti-pattern is poor RAG retrieval plus a reasoning model 'to figure it out.' Reasoning improves inference over the evidence provided, not evidence gathering. If the top-k chunks do not contain the answer, a reasoning model will produce a confident, well-argued hallucination. The RAG survey emphasizes that retrieval quality is the ceiling on generation quality: no amount of reasoning compensates for a missing or irrelevant context. The cost-effective sequence is: \(1\) verify retrieval with recall metrics, \(2\) add reranking and query decomposition, \(3\) use a cheap model for answer generation, and \(4\) add a reasoning model only for complex synthesis over correctly retrieved evidence. Skipping retrieval fixes and paying the reasoning premium is one of the fastest ways to burn budget for no accuracy gain.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-07-06T05:31:12.726707+00:00— report_created — created