
GuidesUpdated 10 min read
AI needs better data, not more slogans
Hallucinations usually trace to thin, stale, or poorly retrieved context - plus missing evaluation. Fix the feed before you swap models.
data qualityAI hallucinationsRAGevaluationML ops
Reckap Team
When an assistant invents a policy, a citation, or a clinical step, the failure is usually upstream: incomplete retrieval, outdated docs, conflicting versions, or no evaluation loop. Bigger models amplify both good and bad context.
Why systems invent answers
- Missing source of truth - the model fills gaps from general training
- Stale documents mixed with current ones
- Naive chunking that strips the meaning needed to answer
- Conflicting versions of the same policy with no authority flag
- No evaluation - failures are discovered by customers
If you use retrieval (RAG), govern the pipeline
Retrieval-augmented generation only helps when:
- Chunks preserve enough context to answer without guessing
- Ranking prefers authoritative, current sources
- Answers can be checked against retrieved evidence
- Humans review high-impact paths
If the knowledge base is wrong, RAG will confidently serve the wrong answer.
A practical data diet
Data diet checklist
- Source-of-truth systems listed with owners
- Freshness SLAs for each source
- PII / forbidden fields blocked or masked
- Semantic (not only fixed-size) chunking for docs
- Eval set of ≥20 real examples with expected answers
- Weekly failure review with a named owner
Measure before you market "accuracy"
| Check | Question |
|---|---|
| Grounding | Is every claim supported by retrieved sources? |
| Currency | Did we pull the current version? |
| Citation honesty | Do cited docs actually contain the claim? |
| Escalation | Do low-confidence cases reach a human? |
30-day quality sprint
- 1
Inventory sources
List systems and docs the assistant may use. Mark authority and freshness.
- 2
Build an eval set
Collect real user questions and failures. Label expected answers or refuse paths.
- 3
Fix retrieval
Improve chunking, ranking, and dedupe of conflicting versions.
- 4
Review weekly
Score the eval set. Promote only changes that improve grounding.
Need a data diet and eval set for an assistant you already run?
Book a callFAQ
- Why do AI systems hallucinate?
- Models generate plausible text even when evidence is missing, outdated, or conflicting. NIST describes this as confabulation - confidently stated erroneous content. Better retrieval, clearer sources, and evaluation reduce risk; they do not eliminate it.
- Does RAG fix hallucinations?
- RAG helps when retrieved context is relevant and authoritative. It fails when chunking is naive, sources conflict, documents are stale, or the model ignores context. Treat RAG as a pipeline to govern - not a magic checkbox.
- What is the first data fix?
- Write which systems are source of truth, how fresh they must be, and which fields must never reach a model. Then build a small eval set from real tickets or questions.
- Who should own data quality for AI?
- A named owner for sources, refresh cadence, and weekly failure review - usually product ops or the workflow owner, not "the model vendor."
