Does the AI remember the answer, or go and find it?
When you type a question, the model’s first decision isn’t what to say, it’s where to get the answer. It has two options, and they behave so differently that the rest of this series is really the story of these two paths.
Answering from memory (parametric knowledge)
A large language model is trained on an enormous amount of text, and that training bakes a compressed impression of what it read into the model’s internal settings, called its weights. Researchers call this parametric memory, knowledge stored in the model’s parameters. When the model answers from memory, it is recalling patterns from training, with no live source behind them. That’s why those answers carry no citations, and why they can be confidently out of date: the model’s memory effectively ends at its training cutoff.
Retrieving from the live web (retrieval-augmented generation)
The alternative is to go and read. The engine issues searches, pulls back live pages, and writes its answer from what those pages say. This is retrieval-augmented generation, or RAG, an approach introduced in a 2020 research paper that pairs the model’s parametric memory with a non-parametric memory: an external index the model can look things up in at answer time. Because the answer is built from freshly fetched text, the engine can attach the sources it used: the links you see beneath an AI answer.
The presence or absence of sources under an answer is your clearest signal of which path ran: sources usually mean the engine retrieved; no sources usually means it answered from memory.
A lightweight decision sits in front of both paths. Google’s grounding documentation describes it plainly: the model first analyzes the prompt and decides whether a web search would improve the answer, and only then generates and runs search queries. OpenAI similarly describes ChatGPT choosing whether to search the web based on what you ask. So the same engine can answer one question from memory and the next by retrieval. The router decides, query by query.
For leadership
Whether your brand can be influenced quickly or only over quarters depends entirely on which path the important prompts take. Memory-based answers move slowly; retrieval-based answers can change as soon as your pages do.
Sources & further reading
- Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks (Lewis et al., 2020), The paper that names parametric vs non-parametric memory and defines RAG.
- Grounding with Google Search, Gemini API docs, Describes the model deciding whether to search, then generating and running queries.
- Introducing ChatGPT search, OpenAI, ChatGPT chooses whether to search the web based on the question.
