Knowledge cutoff: A knowledge cutoff is the date after which a language model's training data stops. Unless it is given live information through search or documents, the model knows nothing about events, prices, or rules that changed after that date.
Models are trained on a snapshot of text collected up to a certain point, then released months later. Everything after the snapshot is a blank. Ask about a tax threshold, a software feature, a regulation, or a company that changed after the cutoff, and the model will answer from stale information, often without warning you.
Two things make this worse. Models are frequently unsure of their own cutoff date and may state it wrong. And they rarely say "I do not know about that yet." Instead, they generate a fluent answer that was true as of their training, or that sounds like it could be. Stale facts are one of the most common ways AI output is confidently wrong.
The fix is to bring the current information to the model. Most assistants now offer web search, which fetches live pages and cites them. You can also paste the current document, policy, or price list into the prompt and tell the model to answer only from it. When a question depends on anything that changes yearly, such as limits, rates, deadlines, or product features, treat the model's unaided answer as a guess.
Example at work
A financial analyst asks for the current contribution limit on a retirement account. The assistant gives a figure from a prior year. She re-asks with web search turned on and the request "cite the IRS page and its date," gets the current limit with a source, and confirms it on the IRS site before it goes into a client memo.
Why it matters
Stale knowledge does not look stale. If you know every model has a cutoff, you will build the habit of supplying current sources or turning on search for anything time-sensitive, which prevents a whole category of embarrassing errors.
Related terms
- Training dataTraining data is the collection of examples an AI model learns from, such as web pages, books, code, images, or labeled records. What is in that data, and what is missing, shapes everything the model knows, how it writes, and which mistakes it makes.
- HallucinationA hallucination is when an AI model produces information that is false or fabricated but presents it confidently, such as an invented statistic, a citation to a paper that does not exist, or a made-up product feature.
- GroundingGrounding 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.
- Retrieval-augmented generation (RAG)Retrieval-augmented generation (RAG) is a technique in which an AI system first searches a set of documents for relevant passages and then gives those passages to a language model to answer from. It lets an assistant use your own, current information.
- Pre-trainingPre-training is the first and largest phase of building an AI model, in which it learns general patterns from a massive dataset, such as predicting the next word across trillions of words of text. Later phases then shape it into a useful assistant.