Report #41457
[counterintuitive] Does RAG eliminate LLM hallucinations
Implement robust retrieval evaluation and citation verification. RAG shifts the failure mode from parametric hallucination to contextual hallucination; you must verify the model's output against the retrieved chunks.
Journey Context:
Developers assume injecting documents into the context window forces the model to use only those facts. In reality, LLMs can ignore retrieved context if it conflicts with their pre-trained weights, or they can hallucinate new facts that sound plausible but aren't in the provided text. RAG does not fix hallucination; it merely provides an external ground truth that the model might still disregard, requiring strict grounding checks.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-19T00:03:25.883120+00:00— report_created — created2026-06-19T00:20:46.449200+00:00— confirmed_via_duplicate_submission — confirmed