1. Home
  2. Glossary
  3. Grounding
AI glossary · Using AI at work

Grounding

Grounding: Grounding means tying an AI model's answer to specific, verifiable sources, such as documents you provide, a database, or live search results, instead of relying on what the model remembers from training.

An ungrounded answer comes from the model's internal knowledge: patterns it absorbed during training, with no source attached. A grounded answer is built from material the model was given at the moment of the request. The model reads your contract, your policy manual, or the search results and answers from those, often with citations pointing back to the exact passage.

Grounding is done several ways. You can paste the source directly into the prompt. Retrieval-augmented generation (RAG) searches a document library and feeds the relevant chunks to the model automatically. Web search tools fetch live pages. Google's Gemini offers grounding with Google Search as a named feature, and tools like NotebookLM are built entirely around answering from the sources you upload.

Grounding reduces hallucination but does not eliminate it. The model can misread a source, combine two passages incorrectly, or cite a page that does not say what it claims. The habit that makes grounding work is checking the citation: click through, find the sentence, and confirm it supports the answer. Grounded output is easier to verify, and that is the real value.

Example at work

A benefits administrator uploads the company's 80-page plan document and asks whether a new hire qualifies for coverage during a probationary period. The assistant answers "yes, after 30 days" and cites section 4.2. She opens section 4.2, confirms the language, and quotes it in her reply to the employee.

Why it matters

Most workplace questions are about your documents, your data, and current facts, none of which live in a model's training. Learning to ground your prompts, by attaching the source and asking for citations, is the single biggest upgrade in accuracy you can make without any technical setup.

Related terms