# Knowledge Cutoff

> Source: https://rankxai.com/glossary/knowledge-cutoff · Last updated: 2026-08-18

A knowledge cutoff is the date after which a model’s training data contains nothing. The knowledge cutoff does not limit what an assistant can discuss, because retrieval fetches current pages at question time. It limits what the model knows without looking, which is a different and less visible thing.

## Why can an assistant discuss last week at all?

Because two different memories are in play. Anthropic’s documentation draws the line explicitly: the context window is “all the text a language model can reference when generating a response”, and it “is different from the large corpus of data the language model was trained on”. Google describes grounding as letting a model “cite verifiable sources beyond its knowledge cutoff”. Anything current in an answer arrived through retrieval, not through training.

So a cutoff date tells you almost nothing about whether an assistant can answer a question about today. It tells you what the model will fall back on when retrieval returns nothing useful, which is the case that produces confident, stale answers.

## Where does a knowledge cutoff hurt a brand?

On the questions nobody searches the web to answer. Ask an assistant what a company does and it may answer from memory without retrieving anything, and the memory is as old as the cutoff. A repositioning, a rename, a pricing change or an acquisition can be months out of date in an answer that carries no date and no source, which makes it indistinguishable from a current one.

This is also the mechanism behind the most frustrating category of AI visibility complaint: a brand that has fixed its site, published the correction and still finds itself described the old way. The site was never the problem. The answer never went looking.

## What can you do about a stale answer?

Make retrieval more attractive than recall, which is the only lever available. An assistant is more likely to search when the question is specific, recent or contested, so the practical move is to make sure that when it does search, the current facts are in the first thing it finds: a page that states plainly what the company is now, dated, and structured so one passage answers the question completely.

The honest limit is that you cannot force it. There is no mechanism for correcting a model’s memory, no feedback channel that reaches training, and no way to tell whether a given answer retrieved anything. Publishing well is a bet on the next crawl and the next model, and it is the only bet on the table. One thing does help at the margin, and it is cheap: give the current facts a date. A page that says plainly when it was last checked gives a retrieval system a reason to prefer it over an undated page saying something older, and it gives a reader the same reason.

## Sources

- [Anthropic: context windows, on training corpus versus working memory](https://platform.claude.com/docs/en/build-with-claude/context-windows), checked 2026-08-18
- [Google: Grounding with Google Search, Gemini API documentation](https://ai.google.dev/gemini-api/docs/grounding), checked 2026-08-18
