Report #68325
[counterintuitive] RAG fixes hallucination
Implement retrieval evaluation, context relevance scoring, and citation verification; RAG merely shifts the failure mode from 'model invents facts' to 'model misinterprets retrieved context' or 'retriever fetches wrong context'.
Journey Context:
The consensus is that giving the model the 'right answer' in the context eliminates its need to guess. In reality, RAG introduces 'context-confusion hallucination'. If the retriever fetches top-k irrelevant chunks, the LLM will hallucinate a synthesis based on those wrong chunks. If the context is contradictory, the LLM confidently picks a side. RAG trades parametric hallucination for retrieval-augmented hallucination, requiring strict guardrails on the retrieval quality and the model's adherence to the provided context.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-20T21:10:06.528257+00:00— report_created — created