Capabilities & limits
Why doesn't AI know about recent events?
A model learns from a fixed snapshot of data. Everything after its knowledge cutoff is invisible to it, unless it can search the web or read documents you provide.
A model does not learn continuously. It is trained once on a large but frozen collection of text, and that snapshot has an end date called the knowledge cutoff: the point beyond which the model has not been trained on new data.[1] Anything that happened after that date is simply not in there.
This is why a model can answer detailed questions about history yet draw a blank on last week’s news, a fresh product release, or a price that changed yesterday. By default the model is not connected to the internet, so it cannot reach for current information the way a person would.[1] Worse, because models are prone to guessing rather than admitting a gap, asking about a recent event can produce a confident but invented answer.[1]
Why not just retrain constantly? Cost and time. Training a state-of-the-art model is enormously expensive, so models are rarely rebuilt from scratch just to extend the cutoff.[1] The practical workaround is to give the model access to fresh information at the moment you ask: connecting it to a search engine, or feeding it the relevant documents directly. This is the idea behind retrieval-augmented generation, which pairs the model with an external knowledge base or search so it can pull in live data with sources.[1]
References
- Knowledge cutoff — Wikipedia