PromptForge
AI Glossary

Retrieval & data

Grounding

Also known as: grounded generation

Definition

Grounding means tying model output to verifiable sources — retrieved documents, search results, or database records — rather than relying on parametric memory. Grounded answers can be checked.

An ungrounded answer comes from whatever the model absorbed during training, with no way to verify it. A grounded answer comes with citations you can follow.

Grounding is the main defence against hallucination in production systems. The pattern is: retrieve relevant sources, instruct the model to answer only from them, and require a citation for each claim. Then a reviewer can spot-check.

Grounding is not automatic once you add retrieval. Models will still blend parametric knowledge with retrieved context unless explicitly instructed not to, which produces answers that look sourced but are not.

Related terms

Put this into practice

Understanding the term is step one. Our free courses and tools let you actually use it.