Skip to content

Glossary Grounding

What is grounding

Definition

Grounding is the property of an answer generated by a language model whose claims come from documents retrieved at answering time and can be traced back to them, rather than coming solely from the memory of training.

On this page 5
  1. What it means for an answer to be grounded
  2. How an answer gets grounded
  3. Why it matters
  4. Best practices
  5. Common mistakes
In brief

The property that measures how far what a generated answer claims is actually held up by the documents it says it consulted.

What it means for an answer to be grounded

Two things that often get mixed together belong apart. Retrieval-augmented generation is an architecture: it describes how you build a system that searches for documents before writing. Grounding is a property of the result: it describes how far what the answer says is held up by those documents. One is the blueprint of the machine, the other is the measure of what comes out the far end.

The distinction is not academic. A system built with retrieval can return a poorly grounded answer, because the model received the right fragments and still wrote a sentence that none of them supports. The opposite also happens, when a model without retrieval mentions from memory a source that exists and that does in fact say what it claims. Retrieving and supporting are different operations, and the first does not guarantee the second.

Grounded, in practice, means three conditions hold together. The cited source exists and is accessible. The source genuinely deals with the matter the sentence is about. And the source claims what the sentence attributes to it. Serious evaluation systems check all three separately, because each fails on its own and the last one breaks most often.

How an answer gets grounded

The mechanism has a retrieval part and a stitching part. Retrieval hands the model a set of fragments together with the user's question. The stitching is what separates a grounded answer from any old summary: the system preserves the correspondence between each stretch of generated text and the fragment it came from, and that correspondence travels with the answer instead of being lost during writing.

In Google's implementation that information arrives through the programming interface itself. Alongside the text it returns the queries the model launched on its own, the results it obtained, and annotations marking, with a start and end position inside the answer, which segment corresponds to which source address. With those marks the application can place the footnote at the exact point rather than piling links at the end of the text. The product offering this connection to the search index is called Grounding with Google Search, and its terms of use require the accompanying search suggestions to be displayed.

There is a variant that never touches the open web. A system can be grounded against a closed corpus, an internal document base or a product catalogue, using the same scheme of source marks. Grounding describes the link to the source, whether that source is public or private, which is why it turns up in conversational search engines as much as in internal company assistants.

What no marking scheme solves is the quality of what was retrieved. If the selected fragment says something wrong, the answer will be perfectly grounded in an error, with its impeccable link underneath.

Why it matters

Grounding is often sold as a guarantee of truth, and it is not. It lowers the invention rate because it forces the model to start from a specific text, but in exchange it introduces a new dependency: the answer inherits the errors, the omissions and the age of whatever was retrieved.

The available evidence is uncomfortable. A paper published in April 2025 evaluated seven popular models across some eight hundred medical questions and around fifty-eight thousand statement and source pairs. Between 50 and 90 per cent of the answers were not fully supported by the sources they cited, and in some cases the source contradicted the claim. Even with web search enabled, roughly a third of individual statements went unsupported. The field was medicine and the figure does not transfer wholesale to other topics, but it fixes the order of magnitude of the problem.

From that follows the practical decision, and it is twofold. Anyone publishing must assume their pages will be cited in support of sentences they never wrote, which turns the clarity of every claim into a matter of reputation. And anyone consuming AI answers inside a workflow needs a verification step of their own for anything with consequences, because the link says where the system claims it got the fact, not that the fact is correct.

Best practices

  • Put the verifiable claim and its figure in the same sentence or paragraph as the term they refer to, so the retrieved fragment stands up without the rest of the page.
  • Date every perishable fact inside the visible text, because the model cannot tell a 2019 figure from one from this year if the page does not say so.
  • Keep the page holding the fact crawlable and free of walls, since a fragment nobody can retrieve never grounds anything.
  • Check regularly which specific sentence gets attributed to the brand in generated answers, rather than merely counting whether the brand appears.
  • In your own systems, store the source marks the model returns and display them at the exact point in the text, not as a list of links at the end.
  • Set out in writing which kinds of claims require human verification before publication, using risk criteria rather than case by case judgement.

Common mistakes

  • Treating the presence of links under an answer as proof of accuracy. They indicate declared origin, and that is the whole of what they tell you.
  • Confusing grounding with retrieval-augmented generation. A system can have retrieval and still produce poorly grounded answers every day.
  • Measuring only the percentage of answers carrying a citation, without checking whether the citation supports the specific sentence it is attached to.
  • Splitting a fact across distant sections of the page, so that no retrievable fragment contains the complete claim.
  • Requiring consent, a login or script execution to read the content you want to see cited.
Manuel Riveiro Rodriguez CEO & Digital Strategist

A technical audit covers this and everything else in one pass.

Request an audit

Frequently asked

Is grounding the same as RAG?

No. RAG names the architecture, the system that searches for documents before generating text. Grounding names a property of the result, the degree to which each claim is held up by those documents. A system with RAG can produce poorly grounded answers, and that difference is precisely what gets evaluated separately.

Can a grounded answer be wrong?

Yes, in three ways. The retrieved source may be incorrect or out of date. The model may summarise it badly. And the citation may end up attached to a sentence the source does not support. Available studies show this last case is frequent even in systems with web search enabled.

What does Google call this feature?

Grounding with Google Search is the name of the product connecting the model to the search index during generation. It returns the text along with the queries launched, the results obtained and annotations linking each segment of the answer to its source address. Its terms require the associated search suggestions to be shown.

Does grounding eliminate hallucinations?

It reduces them and does not eliminate them. Starting from a specific text greatly lowers the chance the model invents a fact, but it opens a new route to error, that of inheriting whatever the source says. For claims with legal, medical or financial consequences, human verification is still required.

What can I do so my content works as grounding?

Write every verifiable claim so it is understandable without the rest of the page, with its figure and its date in the same paragraph. Keep that page open to crawling, without walls or dependencies on scripts. And afterwards check which sentences get attributed to the brand in generated answers.

Sources

  1. Documentation for Grounding with Google Search: describes the flow, the source annotations with start and end positions, and the obligation to display search suggestions.
  2. Study published in April 2025 evaluating whether the sources cited by seven models genuinely support their claims on medical questions.
  3. Open version of the same work, with the detail of the method and of the eight hundred questions and the statement and source pairs analysed.
  4. Defines grounding in Google's vocabulary as the delivery of content from the search index to the model at prompt time.
  5. Search Console help where the control for website owners is described in terms of grounding the generative answers inside Search.