Sistava

What is Knowledge Cutoff?

Also called Training Cutoff, Training Data Cutoff.

A knowledge cutoff is the date after which a language model's training data ends, so events, releases, and changes occurring later are absent from its parameters. The model may still answer questions about that period, confidently and incorrectly, unless the application supplies current information or the model is instructed to acknowledge the limit.

Training corpora are assembled up to a point in time and then frozen, so a model's internal knowledge is a snapshot. Coverage also thins toward the cutoff, because material published shortly before it has had less time to be discussed, indexed, and included, which means the final months are typically weaker than the date alone suggests.

Models are frequently uncertain about the cutoff itself and about the current date. Asked what year it is, a model will often answer with a date near its training window rather than the present, and it may state a cutoff that is only approximate. Applications commonly inject the current date to avoid this class of error.

Retrieval is the standard remedy. Supplying current documents at query time lets a model answer about events after its cutoff without retraining, which is one of the principal motivations for retrieval based architectures. The model reasons over supplied text rather than recalling it, so freshness becomes a property of the corpus.

The cutoff also affects behavior beyond facts. A model may recommend deprecated library functions, describe an interface that has since changed, or be unaware of a newer standard, all in fluent and plausible terms. Version pinned documentation in the retrieval corpus is the usual mitigation, and stating the cutoff to users sets expectations.

Key points

In practice

A team asks an assistant about a framework release published after the model's training ended. Without retrieval, the assistant describes the previous version's interface in confident detail. With the current documentation retrieved and injected, alongside today's date, it describes the new interface accurately and notes which version the guidance applies to.

Related terms

Back to the AI Glossary