Large Language Model (LLM)
What a large language model is, how it predicts text token by token, the LLMs powering AI search (Gemini, GPT-4), and what they mean for SEO.
A large language model (LLM) generates text by predicting the next token — it isn't reasoning the way a human does, it's running a probabilistic completion. LLMs are built on the transformer architecture and split into two roles in search: understanding models like BERT help rank, while generative models like Gemini (Google AI Overviews) and GPT-4 (Bing Copilot) write the answers. They're limited by a knowledge cutoff, a finite context window, and a tendency to hallucinate — which is exactly why RAG and grounding exist. For SEOs the practical news is boring: indexing is still the prerequisite, brand mentions correlate with AI visibility more strongly than backlinks, and 'normal SEO' is what gets you cited.
TL;DR — A large language model (LLM) is the technology behind tools like ChatGPT, Google’s AI OverviewsAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index., and Bing Copilot. It works by predicting the next word over and over, based on patterns it learned from a huge amount of text. It doesn’t “know” or “understand” things the way you do — it’s making very good statistical guesses. In search, LLMs read web pages and write the AI answers you see at the top of results.
What an LLM is
Large language models learn statistical patterns over tokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory. sequences and generate text by predicting continuations. Evidence for this claim Large autoregressive language models are trained to predict tokens from preceding context and can perform varied language tasks through prompting. Scope: GPT-3 research findings; later models, training methods, and product systems differ. Confidence: high · Verified: Brown et al.: Language Models are Few-Shot Learners Product behavior also depends on prompting, retrieval, tools, policies, and model version. Evidence for this claim Applications can give a language model tools for web search, file search, code execution, or external functions. Scope: OpenAI API tool capabilities; tool access is configured separately and should not be conflated with the base model's stored knowledge. Confidence: high · Verified: OpenAI: Tools guide
A large language model is a computer program trained on an enormous amount of text — books, articles, websites — until it gets very good at one task: guessing what word (or piece of a word) comes next.
That’s genuinely most of the magic. When you type a question, the model takes your words and predicts the most likely next bit of text, then the next, then the next, building up an answer one piece at a time. “Large” just means it’s huge — trained on billions of examples with billions of internal settings.
The thing to keep in your head: an LLM is predicting, not thinking. It produces text that sounds right because it learned the patterns of how language usually flows. Most of the time that lines up with the truth. Sometimes it doesn’t — and when the model confidently makes something up, that’s called a hallucinationAn AI hallucination is when a large language model generates output that is confidently stated but factually wrong, made up, or unsupported by its source. It's a side effect of next-token prediction — not a bug that can be fully eliminated..
How LLMs show up in search
When you search and see an AI-written summary at the top — Google calls it an AI Overview — an LLM wrote that. Here’s the rough flow:
- You type a question.
- The search engine finds relevant web pages (the normal search step).
- It hands those pages to an LLM.
- The LLM reads them and writes a short answer, usually with links to its sources.
The important takeaway for anyone with a website: the LLM is mostly summarizing pages the search engine already foundA 302 (\"Found\") is a temporary redirect: it forwards users to a new URL while telling search engines the original URL should stay in the index. It's a weak canonicalization signal, not the zero-equity dead end of SEO folklore.. So if your page can’t be found and indexedStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. in the normal way, it can’t show up in the AI answer either. The technique that feeds fresh web pages to the model is called retrieval-augmented generationRAG is the retrieve-then-generate pattern behind AI search: the system retrieves relevant passages from an external index at query time, injects them into the model's context, and generates an answer grounded in those sources — without changing the model's weights. (RAG), and it’s how these tools stay current despite being trained on older data.
Which LLMs power which search
- Google uses its own model family called Gemini for AI OverviewsAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index. and AI Mode.
- Bing / Microsoft Copilot uses OpenAI’s GPT-4 (customized for search).
- Perplexity and ChatGPT Search are other popular AI searchAI search uses large language models and retrieval-augmented generation (RAG) to synthesize an answer from multiple sources rather than returning a ranked list of links. Examples include Google AI Overviews, ChatGPT Search, and Perplexity. tools.
- Claude (Anthropic) and Llama (Meta’s open-source model) are other major LLMs you’ll hear named.
The thing most people get wrong
There is no secret “LLM SEO” that replaces regular SEO. Google’s own people have said the way to appear in AI Overviews is to use normal SEO practices and get indexed. Getting found and indexed is still the prerequisite — the AI layer sits on top of search, it doesn’t go around it.
Want the technical version — the transformer architecture, knowledge cutoffsA knowledge cutoff (or training data cutoff) is the date after which an LLM was no longer trained on new data. The model has no awareness of anything that happened later — unless the system bolts on live retrieval (RAG/web search) to fetch it at query time., context windows, and what my brand research actually found correlates with AI visibility? Switch to the Advanced tab.
TL;DR — An LLM estimates the probability of the next tokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory. and generates text autoregressively — that’s the whole engine. It runs on the transformer architecture, which processes a full sequence in parallel via attention rather than token-by-token like RNNs. In search there are two distinct jobs: understanding (BERTSemantic search is meaning-based retrieval — matching what a user means, not just the words they typed. Search engines detect entities, expand synonyms, infer intent, and rank by conceptual relevance, which is why keyword stuffing lost its power and topical depth gained it.-style encoders that help rank) and generation (Gemini, GPT-4 writing AI answers). LLMs are bounded by a knowledge cutoffA knowledge cutoff (or training data cutoff) is the date after which an LLM was no longer trained on new data. The model has no awareness of anything that happened later — unless the system bolts on live retrieval (RAG/web search) to fetch it at query time., a finite context window, and hallucinationAn AI hallucination is when a large language model generates output that is confidently stated but factually wrong, made up, or unsupported by its source. It's a side effect of next-token prediction — not a bug that can be fully eliminated. — which is precisely why RAGRAG is the retrieve-then-generate pattern behind AI search: the system retrieves relevant passages from an external index at query time, injects them into the model's context, and generates an answer grounded in those sources — without changing the model's weights. and groundingGrounding is anchoring an AI model's answer to source documents it retrieves at the moment you ask — not to the patterns frozen into its weights during training. Retrieval-Augmented Generation (RAG) is the most common way to do it. exist. For SEO, indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. remains the prerequisite, and in Ahrefs’ 75,000-brand study by Louise Linehan and Xibeijia Guan text-based signals like branded mentions correlated with AI OverviewAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index. visibility roughly 3× more strongly than backlinks.
What an LLM actually is
An LLM is not a database of guaranteed facts, and fluent output is not evidence of accuracy. Evidence for this claim Large autoregressive language models are trained to predict tokens from preceding context and can perform varied language tasks through prompting. Scope: GPT-3 research findings; later models, training methods, and product systems differ. Confidence: high · Verified: Brown et al.: Language Models are Few-Shot Learners Search products that use LLMs may combine them with external retrieval and ranking systems. Evidence for this claim Applications can give a language model tools for web search, file search, code execution, or external functions. Scope: OpenAI API tool capabilities; tool access is configured separately and should not be conflated with the base model's stored knowledge. Confidence: high · Verified: OpenAI: Tools guide
A language model, in Google’s own words, “estimates the probability of a token or sequence of tokens occurring within a longer sequence of tokens.” That’s the foundation. An LLM is a very large version of that: a deep-learning model with billions of parameters trained to predict the next token across web-scale text.
Two things make it “large” and capable:
- Scale. Billions of parameters, trained on enormous corpora. As models grow, capabilities like summarization, reasoning, and code generation start to emerge without being explicitly programmed in.
- The transformer architecture. Introduced in Google’s 2017 paper Attention Is All You Need, transformers process a whole sequence at once and use an attention mechanism so each token can “look at” every other token. Google’s ML Crash Course frames the contrast directly: large language models “can evaluate the whole context at once,” unlike older recurrent neural networks that processed “token by token” and suffered the “vanishing gradient problem.”
The model is trained by next-token prediction on raw text, then typically refined with RLHF (reinforcement learning from human feedback) to make it more helpful and safer. At inference it generates autoregressively — one token at a time, each prediction fed back in as input for the next. A setting called temperature controls how random that sampling is.
It helps to keep the stages separate, because people conflate them constantly. Evidence for this claim Pretraining learns broad statistical representations, post-training changes model behavior toward instructions or preferences, and inference applies the resulting model to supplied context; prompt context does not by itself update model weights. Scope: General pipeline description across instruction-tuned LLMs; the exact post-training method (RLHF, DPO, or other) and how a given product layer handles session memory vary by provider and are not covered here. Confidence: high · Verified: Ouyang et al.: Training language models to follow instructions with human feedback Pretraining is where the weights actually get set — the model learns broad statistical patterns from next-token prediction across a huge corpus. Post-training (RLHF and similar preference-tuning steps) adjusts those same weights again, toward instructions and safety behavior. Inference — what happens when you send it a prompt — doesn’t update the weights at all; the model just applies whatever it learned in the two training stages to the text you hand it. That’s also why a long context window isn’t the model “learning” about you: the extra text is input for that one request, not a training update, and it’s gone once the session ends unless a separate product feature saves and re-feeds it as memory.
Keep the mental model honest: this is a probabilistic process. The model produces plausible completions, not verified facts.
Understanding vs. generation: two different jobs
This is the distinction that clears up most LLM-in-search confusion.
- BERT (2019) is an encoder-only, bidirectional model. Google: it considers “the full context of a word by looking at the words that come before and after it.” BERT’s job is understanding — interpreting queries and documents to improve ranking. It doesn’t generate answers. Google said BERT would “help Search better understand one in 10 searches in the U.S. in English,” and Pandu Nayak called it “the biggest leap forward in the past five years.”
- Gemini / GPT-4 are generative models (decoder-style, autoregressive). Their job is generation — synthesizing the AI Overview or Copilot answer text from retrieved passages.
So when an SEO asks “does the LLM rank my page?” the honest answer is: a BERT-style understanding model has long influenced ranking; a generative model like Gemini writes the AI summary over whatever the retrieval step surfaced. Different models, different stages.
Google’s LLM evolution in search
A rough timeline, because the lineage matters:
- 2017 — Attention Is All You Need (Google Research): the transformer paper everything else is built on.
- 2019 — BERT: first transformer LLM in Google ranking; “one in 10 searches.”
- 2021 — MUM: a ~110-billion-parameter, T5-based model Google billed as “1,000 times more powerful than BERT,” multimodal and trained across 75+ languages.
- 2023 — Gemini: “built from the ground up to be multimodal,” pre-trained on multiple modalities from the start; shipped in Ultra / Pro / Nano variants. Google reported it as the first model to “outperform human experts on MMLU” (90.0%). (Benchmark numbers like that one are tied to the exact model version, test set, and evaluation date the lab used at the time — they don’t automatically carry over to later updates of the same model family.)
- 2024 — AI OverviewsAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index. (graduating from SGE): the generative layer arrives on the results page.
- 2025 — AI Mode + Gemini 3: Elizabeth Reid described Gemini 3 in Search as bringing “state-of-the-art reasoning, deep multimodal understanding and powerful agentic capabilities,” with the system intelligently routing complex questions to Gemini 3 and simpler tasks to faster models.
- 2026 — Gemini 3 becomes the default for AI Overviews. Per Robby Stein, “Gemini 3 is now the default model for AI Overviews.”
Bing Copilot: GPT-4 + Prometheus + the Bing index
Microsoft confirmed in March 2023 that “the new Bing is running on GPT-4, which we’ve customized for search,” and that “as OpenAI makes updates to GPT-4 and beyond, Bing benefits from those improvements.”
The piece that connects a frozen LLM to the live web is Microsoft’s Prometheus model — described as a model combining the fresh Bing index with the reasoning of GPT. The Copilot pipeline reformulates your query into search strings, retrieves from the Bing index, and has GPT synthesize a grounded, cited answer. (Note: that detailed pipeline breakdown comes from third-party technical analysis, not a first- party Microsoft spec — treat the step-by-step as industry-reported.)
How AI Overviews actually generate an answer (the RAG pipeline)
The reason these systems can answer about today’s news despite an old training cutoff is retrieval-augmented generation. Google Cloud’s own definition: RAG “combines the strengths of traditional information retrieval systems with the capabilities of generative large language models.” Conceptually:
- You submit a query.
- Complex queries get decomposed — Google’s query fan-outQuery fan-out is the technique where an AI search system breaks a single user question into multiple related sub-queries, runs those searches concurrently, and synthesizes the retrieved results into one answer. Google confirms AI Overviews and AI Mode 'may use a query fan-out technique' issuing multiple related searches across subtopics. — into sub-queries.
- Each sub-query retrieves candidate passages from the index.
- Those passages are injected into the LLM’s context window — this is groundingGrounding is anchoring an AI model's answer to source documents it retrieves at the moment you ask — not to the patterns frozen into its weights during training. Retrieval-Augmented Generation (RAG) is the most common way to do it., anchoring the answer to retrieved sources rather than training data alone.
- The LLM generates a synthesized answer with citations.
- Safety and quality checks run, and the answer is returned.
The SEO implication is a chain of gates. Your content has to be (a) crawlable by AI bots, (b) indexed, (c) surfaced by retrieval, (d) selected over competing passages, and (e) represented accurately in the output. Falling out at any stage means you’re not in the answer.
Limitations that matter to SEOs
| Limitation | What it means for you |
|---|---|
| Knowledge cutoffA knowledge cutoff (or training data cutoff) is the date after which an LLM was no longer trained on new data. The model has no awareness of anything that happened later — unless the system bolts on live retrieval (RAG/web search) to fetch it at query time. | The model knows nothing past its training date unless RAG supplies fresh content. Cutoff ≠ release date — they can differ by months. GPT-5’s training cutoff is reported as September 2024. |
| Context window | An LLM can only process a finite amount of text at once, measured in tokens. This bounds how much retrieved content can be fed in — and it’s why chunkingChunking is splitting a document into smaller passages so AI systems can embed, index, and retrieve the single most relevant piece — not the whole page — in response to a query. It's a foundational step in RAG pipelines and the conceptual cousin of Google's passage ranking. matters in retrieval. |
| Hallucination | The model generates plausible-sounding completions that can be wrong. It’s a statistical artifact, not lying. Ahrefs research found AI assistants send visitors to 404 pages 2.87× more often than Google Search. |
| JavaScript coverage risk | AI-crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM. varies by provider, so JS-dependent content can be missed when a fetcher uses only the initial HTML. |
| Passage chunking | Retrieval systems break pages into passages. My research on Chrome’s processing pointed to ~200-word passages and analysis of only the first ~30 passages of a page — content buried deep may never be retrieved. |
What this means for your content strategy
A few things I’m comfortable saying, separated from the things nobody outside the engines actually knows:
- IndexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. is still the prerequisite. Gary Illyes was blunt: “To get your content to appear in AI Overview, simply use normal SEO practices.” There’s no confirmed special LLM-targeting signal. And on the much-hyped llms.txtllms.txt is a proposed (not adopted) Markdown file at /llms.txt that gives AI systems a curated map of a site's most important pages. Proposed by Jeremy Howard in 2024, it's read mostly by coding agents like Claude Code — not search crawlers — and Google ignores it. file, Illyes said “Google doesn’t support LLMs.txt and isn’t planning to,” with John Mueller comparing it to the old meta keywords tagThe meta keywords tag — <meta name=\"keywords\" content=\"...\"> — is a mid-1990s HTML head element meant to let a page declare its own topic keywords to search engines. Google has publicly ignored it for ranking since 2009, and no major search engine uses it as a ranking signal today. It's dead as SEO, and a populated one only leaks your target keywords to anyone who views your source..
- Brand mentions beat backlinks for AI visibility. In our study of 75,000 brands, branded web mentions were the strongest correlate of AI Overview appearances (≈0.66), versus ≈0.22 for backlinks — text-based signals correlated roughly 3× more strongly than link metrics. As we put it, LLMs “derive their understanding of a brand’s authority from words on the page, from the prevalence of particular words, the co-occurrence of different terms and topics, and the context in which those words are used.”
- It’s winner-takes-all. Brands in the top quartile for web mentions averaged 169 AI Overview mentions versus 14 for the next quartile — and 26% of studied brands had zero. High-authority, high-traffic placements compound your AI visibility.
- Freshness helps. Across a 17-million-citation analysis, AI assistants preferred citing content meaningfully newer than what typically appears in organic results.
- Don’t reflexively block AI crawlersAI crawlers are bots from AI companies that fetch web pages to train language models, build AI-search indexes, or answer live user questions. They come in three categories, each with its own user-agent tokens and its own robots.txt controls.. Blocking likely forfeits AI visibility with no SEO upside. And remember the JS blind spot above — if your content needs JavaScript to appear, most AI crawlers won’t see it.
And the honest caveat: the engines consistently avoid revealing how the ranking side of AI Overviews works. The confirmed story is “get indexed, do normal SEO.” Everything past that is inference — mine included.
AI summary
A condensed take on the Advanced version:
- An LLM predicts the next tokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory. and generates text autoregressively — a probabilistic process, not human reasoning. It runs on the transformer architecture (2017’s Attention Is All You Need), which uses attention to process a full sequence in parallel instead of token-by-token like RNNs.
- Two jobs in search: understanding (BERTSemantic search is meaning-based retrieval — matching what a user means, not just the words they typed. Search engines detect entities, expand synonyms, infer intent, and rank by conceptual relevance, which is why keyword stuffing lost its power and topical depth gained it. — encoder-only, bidirectional, helps ranking, doesn’t generate) vs. generation (Gemini, GPT-4 — write the AI answers).
- Training vs. inference: pretraining and post-training (RLHF) are where the model’s weights actually get set; sending it a prompt at inference doesn’t update those weights — a big context window is input for that one request, not memory or a training update.
- Google’s lineage: BERT (2019) → MUM (2021, ~110B params, “1,000× BERT”) → Gemini (2023, multimodal) → AI OverviewsAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index. (2024) → Gemini 3 as the default for AI Overviews (2026).
- Bing Copilot runs on GPT-4 “customized for search,” bridged to the live Bing indexStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. via the Prometheus model.
- AI OverviewsAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index. use RAGRAG is the retrieve-then-generate pattern behind AI search: the system retrieves relevant passages from an external index at query time, injects them into the model's context, and generates an answer grounded in those sources — without changing the model's weights.: query fan-outQuery fan-out is the technique where an AI search system breaks a single user question into multiple related sub-queries, runs those searches concurrently, and synthesizes the retrieved results into one answer. Google confirms AI Overviews and AI Mode 'may use a query fan-out technique' issuing multiple related searches across subtopics. → retrieve passages → ground them in the LLM’s context window → generate a cited answer. Your content must be crawlable, indexed, retrieved, selected, and accurately represented.
- Key limits: knowledge cutoffA knowledge cutoff (or training data cutoff) is the date after which an LLM was no longer trained on new data. The model has no awareness of anything that happened later — unless the system bolts on live retrieval (RAG/web search) to fetch it at query time. (≠ release date), finite context window, hallucinationAn AI hallucination is when a large language model generates output that is confidently stated but factually wrong, made up, or unsupported by its source. It's a side effect of next-token prediction — not a bug that can be fully eliminated. (AI tools hit 404s 2.87× more than Google), no JS renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM., and passage chunkingChunking is splitting a document into smaller passages so AI systems can embed, index, and retrieve the single most relevant piece — not the whole page — in response to a query. It's a foundational step in RAG pipelines and the conceptual cousin of Google's passage ranking. (~200-word passages, ~first 30 analyzed).
- For SEO: indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. is the prerequisite (“simply use normal SEO practices”); branded mentions correlated ~3× stronger than backlinks with AI Overview visibility in the 75K-brand study; AI visibility is winner-takes-all; freshness helps; don’t reflexively block AI crawlersAI crawlers are bots from AI companies that fetch web pages to train language models, build AI-search indexes, or answer live user questions. They come in three categories, each with its own user-agent tokens and its own robots.txt controls..
Official documentation
Primary-source documentation on LLMs in search.
- Google ML Crash Course — Large Language Models — Google’s own definition of a language model and the tokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory.-probability explanation.
- Understanding searches better than ever before (BERT) — Pandu Nayak’s 2019 post introducing BERTSemantic search is meaning-based retrieval — matching what a user means, not just the words they typed. Search engines detect entities, expand synonyms, infer intent, and rank by conceptual relevance, which is why keyword stuffing lost its power and topical depth gained it. into ranking.
- Introducing Gemini: our largest and most capable AI model — the December 2023 multimodal architecture announcement.
- Gemini 3 in Search and AI Mode — Elizabeth Reid on reasoning, multimodality, and query fan-outQuery fan-out is the technique where an AI search system breaks a single user question into multiple related sub-queries, runs those searches concurrently, and synthesizes the retrieved results into one answer. Google confirms AI Overviews and AI Mode 'may use a query fan-out technique' issuing multiple related searches across subtopics. (Nov 2025).
- AI Mode and AI Overviews updates — Robby Stein confirming Gemini 3 as the default for AI OverviewsAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index. (Jan 2026).
- Retrieval-Augmented Generation (RAG) on Google Cloud — the official RAGRAG is the retrieve-then-generate pattern behind AI search: the system retrieves relevant passages from an external index at query time, injects them into the model's context, and generates an answer grounded in those sources — without changing the model's weights. framing and how Gemini grounds responses.
Bing / Microsoft
- Confirmed: the new Bing runs on OpenAI’s GPT-4 — Microsoft confirming GPT-4 customized for search (Mar 2023).
Quotes from the source
On-the-record statements from Google and Microsoft. Each link is a deep link that jumps to the quoted passage on the source page.
Google — what a language model is
- “BERTSemantic search is meaning-based retrieval — matching what a user means, not just the words they typed. Search engines detect entities, expand synonyms, infer intent, and rank by conceptual relevance, which is why keyword stuffing lost its power and topical depth gained it. models can therefore consider the full context of a word by looking at the words that come before and after it.” — Pandu Nayak, Google Fellow and VP, Search. Jump to quote
Google — Gemini
- “built from the ground up to be multimodal” — meaning Gemini was “pre-trained from the start on different modalities.” — Google’s Gemini announcement. Jump to quote
Google — Gemini 3 as the default for AI OverviewsAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index.
- “Gemini 3 is now the default model for AI OverviewsAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index., giving you better AI responses.” — Robby Stein, VP of Product, Google Search (Jan 2026). Jump to quote
Google — RAGRAG is the retrieve-then-generate pattern behind AI search: the system retrieves relevant passages from an external index at query time, injects them into the model's context, and generates an answer grounded in those sources — without changing the model's weights. and groundingGrounding is anchoring an AI model's answer to source documents it retrieves at the moment you ask — not to the patterns frozen into its weights during training. Retrieval-Augmented Generation (RAG) is the most common way to do it.
- “RAG is an AI framework that combines the strengths of traditional information retrieval systems with the capabilities of generative large language models.” — Google Cloud, Retrieval-Augmented Generation. Jump to quote
Google — normal SEO for AI Overviews
- “To get your content to appear in AI Overview, simply use normal SEO practices.” — Gary Illyes, Google Search Relations (as reported by Search Engine Land, Jul 2025). Read the coverage
Microsoft — Bing on GPT-4
- “the new Bing is running on GPT-4, which we’ve customized for search.” — Microsoft Bing blog (Mar 2023). Jump to quote
LLMs in search — cheat sheet
Which model does what
| Model | Maker | Role in search | Type |
|---|---|---|---|
| BERTSemantic search is meaning-based retrieval — matching what a user means, not just the words they typed. Search engines detect entities, expand synonyms, infer intent, and rank by conceptual relevance, which is why keyword stuffing lost its power and topical depth gained it. | Understanding queries/documents for ranking | Encoder-only, bidirectional | |
| Gemini | Generates AI OverviewsAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index. & AI Mode answers | Generative (multimodal) | |
| GPT-4 | OpenAI | Powers Bing Copilot (customized for search) | Generative, autoregressive |
| Claude | Anthropic | General AI assistant / chat search | Generative, autoregressive |
| Llama | Meta | Open-source model used widely off-platform | Generative, autoregressive |
Core concepts
- TokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory. — the chunk of text the model predicts (often a word-piece).
- Next-token prediction — the entire generation engine; runs autoregressively.
- Transformer / attention — processes a full sequence in parallel; replaced RNNs.
- Knowledge cutoffA knowledge cutoff (or training data cutoff) is the date after which an LLM was no longer trained on new data. The model has no awareness of anything that happened later — unless the system bolts on live retrieval (RAG/web search) to fetch it at query time. — last training date; not the release date.
- Context window — max tokens processable at once; bounds RAGRAG is the retrieve-then-generate pattern behind AI search: the system retrieves relevant passages from an external index at query time, injects them into the model's context, and generates an answer grounded in those sources — without changing the model's weights. chunk sizesChunking is splitting a document into smaller passages so AI systems can embed, index, and retrieve the single most relevant piece — not the whole page — in response to a query. It's a foundational step in RAG pipelines and the conceptual cousin of Google's passage ranking..
- Temperature — controls randomness of the next-token sampling.
- RAG / groundingGrounding is anchoring an AI model's answer to source documents it retrieves at the moment you ask — not to the patterns frozen into its weights during training. Retrieval-Augmented Generation (RAG) is the most common way to do it. — feeds fresh retrieved web content into the context window.
- HallucinationAn AI hallucination is when a large language model generates output that is confidently stated but factually wrong, made up, or unsupported by its source. It's a side effect of next-token prediction — not a bug that can be fully eliminated. — a confident, plausible, wrong completion (a statistical artifact).
SEO fast facts
- IndexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. is the prerequisite — “simply use normal SEO practices.”
- Google does not support llms.txtllms.txt is a proposed (not adopted) Markdown file at /llms.txt that gives AI systems a curated map of a site's most important pages. Proposed by Jeremy Howard in 2024, it's read mostly by coding agents like Claude Code — not search crawlers — and Google ignores it. and isn’t planning to.
- Branded web mentions correlated ~3× stronger than backlinks (75K-brand study).
- AI-crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM. varies by provider — raw HTML maximizes coverage.
The mental models
1. An LLM predicts, it doesn’t think. Every output is the next-most-likely tokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory. given the context so far. “Plausible” is the target, not “true.” HallucinationAn AI hallucination is when a large language model generates output that is confidently stated but factually wrong, made up, or unsupported by its source. It's a side effect of next-token prediction — not a bug that can be fully eliminated. isn’t a bug bolted on — it’s the same mechanism producing a wrong-but-fluent completion.
2. Two jobs: understanding vs. generation. BERTSemantic search is meaning-based retrieval — matching what a user means, not just the words they typed. Search engines detect entities, expand synonyms, infer intent, and rank by conceptual relevance, which is why keyword stuffing lost its power and topical depth gained it.-style encoders understand queries and documents (ranking). Gemini/GPT-style generators write the answer over retrieved passages. When you ask “how does the LLM treat my page,” first ask which LLM and which stage.
3. The frozen model + the live web. The model’s knowledge is frozen at its cutoff. RAGRAG is the retrieve-then-generate pattern behind AI search: the system retrieves relevant passages from an external index at query time, injects them into the model's context, and generates an answer grounded in those sources — without changing the model's weights. and groundingGrounding is anchoring an AI model's answer to source documents it retrieves at the moment you ask — not to the patterns frozen into its weights during training. Retrieval-Augmented Generation (RAG) is the most common way to do it. bolt on a live retrieval step so the answer reflects today’s pages. Without retrieval, you’re asking a model about a world it never saw.
4. The AI-answer gate chain. To appear in an AI OverviewAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index. your content must clear five gates in order: crawlable → indexedStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. → retrieved → selected → accurately represented. Diagnose by finding the first gate you’re failing, not by guessing.
5. Mentions over links for AI visibilityLLM visibility (or AI visibility) is the aggregate measure of how often and how prominently a brand or page shows up in AI-generated answers — across AI Overviews, ChatGPT, Perplexity, Copilot, and Gemini. It's the AI-search analog of organic visibility, but it's driven by different signals.. The model builds its sense of a brand from words on pages — prevalence, co-occurrence, context. That’s why branded mentions out-correlated backlinks ~3× in the 75K-brand study. Earn talked-about-ness, not just linked-to-ness.
LLM assumptions that lead to bad SEO decisions
Treating fluent output as verified reasoning
An LLM predicts a sequence of tokensA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory., and confidence in the prose is not evidence that a claim is true. Verify consequential claims and inspect the sources supplied by retrieval.
Assuming every model plays the same role in search
Understanding models can help interpret and rank queries while generative models compose answers. Identify the system stage before turning a general model capability into an optimization recommendation.
Replacing crawlability with prompt tactics
Search-grounded systems still need accessible, indexable source material. Clear prompts cannot make an unavailable page enter the retrieval candidate set.
Test yourself: Large language models
Resources worth your time
My related writing
- What We Actually Know About Optimizing for LLM Search — the 75K-brand study, Chrome chunkingChunking is splitting a document into smaller passages so AI systems can embed, index, and retrieve the single most relevant piece — not the whole page — in response to a query. It's a foundational step in RAG pipelines and the conceptual cousin of Google's passage ranking. research, and freshness data.
- An Analysis of AI Overview Brand Visibility Factors (75K Brands Studied) — the full correlation table behind “mentions beat backlinks.”
- LLM Visibility: What It Is and How to Optimize for It — the 17M-citation freshness analysis and the JavaScript renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM. blind spot.
- The Complete AI Visibility Guide for SEOs, Marketers, and Site Owners — content formats AI assistants tend to favor.
- What is llms.txt, and Should You Care About It? — why there’s no evidence llms.txtllms.txt is a proposed (not adopted) Markdown file at /llms.txt that gives AI systems a curated map of a site's most important pages. Proposed by Jeremy Howard in 2024, it's read mostly by coding agents like Claude Code — not search crawlers — and Google ignores it. improves AI retrieval.
From others
- Google ML Crash Course — LLM — the clearest official primer on what a language model is.
- Attention Is All You Need (Google Research, 2017) — the original transformer paper that BERTSemantic search is meaning-based retrieval — matching what a user means, not just the words they typed. Search engines detect entities, expand synonyms, infer intent, and rank by conceptual relevance, which is why keyword stuffing lost its power and topical depth gained it., Gemini, and GPT are all built on.
- Google previews MUM — 1,000× more powerful than BERT (Search Engine Land) — the May 2021 announcement of Google’s T5-based 110B-parameter multimodal model.
- Google says normal SEO works for ranking in AI Overviews (Search Engine Land) — Gary Illyes and John Mueller quotes from the July 2025 Search Central Deep Dive.
- How Microsoft Copilot Search Works: Architecture Deepdive (Rankly) — detailed breakdown of the Prometheus model, the four-stage RAGRAG is the retrieve-then-generate pattern behind AI search: the system retrieves relevant passages from an external index at query time, injects them into the model's context, and generates an answer grounded in those sources — without changing the model's weights. pipeline, and how Bing bridges GPT-4 to the live indexStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed..
- LLM knowledge cutoff dates (allmo.ai) — regularly updated table of training cutoffA knowledge cutoff (or training data cutoff) is the date after which an LLM was no longer trained on new data. The model has no awareness of anything that happened later — unless the system bolts on live retrieval (RAG/web search) to fetch it at query time. dates across GPT, Claude, Gemini, and Llama model families.
- r/TechSEO — the community for AI-search and indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. debugging.
Stats worth citing
- Mentions beat backlinks for AI visibilityLLM visibility (or AI visibility) is the aggregate measure of how often and how prominently a brand or page shows up in AI-generated answers — across AI Overviews, ChatGPT, Perplexity, Copilot, and Gemini. It's the AI-search analog of organic visibility, but it's driven by different signals.. In the 75,000-brand study, branded web mentions correlated ≈0.66 with AI OverviewAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index. appearances versus ≈0.22 for backlinks — text-based signals ~3× stronger than link metrics. Source
- Winner-takes-all. Top-quartile brands by web mentions averaged 169 AI Overview mentions vs. 14 for the next quartile; 26% of studied brands had zero. Source
- AI tools hit more dead ends. Across ~16M URLs, AI assistants sent visitors to 404 pages404 Not Found is the HTTP client-error status code a server returns when it can't find the requested URL — RFC 9110 defines it as no current representation, or unwillingness to disclose one. A \"hard 404\" actually returns the 404 status; a \"soft 404\" returns a success code (like 200) for a page that's really gone. 404s are normal and expected: the fact that some URLs 404 doesn't affect your site's other, successful pages, and Google de-indexes 404'd URLs over time (probably retrying for some period, less and less often). 2.87× more often than Google Search — a hallucinationAn AI hallucination is when a large language model generates output that is confidently stated but factually wrong, made up, or unsupported by its source. It's a side effect of next-token prediction — not a bug that can be fully eliminated. side effect. Source
- AI favors fresher content. Across ~17M citations, AI assistants preferred citing content meaningfully newer than what typically appears in organic results. Source
- AI-crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM. varies by provider — JS-dependent content can be missed during retrieval, so raw HTML maximizes coverage. Source
Large Language Model (LLM)
A large language model (LLM) is a deep-learning model trained on massive text corpora to predict the next token and generate human-like text. LLMs use the transformer architecture and power AI search features like Google's AI Overviews (Gemini) and Bing Copilot (GPT-4).
Related: Retrieval-Augmented Generation (RAG), Grounding, Knowledge Cutoff, Embeddings, AI Hallucinations
Large Language Model (LLM)
A large language model (LLM) is a type of deep-learning model trained on huge amounts of text to predict and generate language. Underneath, it does one deceptively simple thing: estimate the probability of the next tokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory. given everything that came before, then generate text one token at a time. It isn’t “thinking” or “understanding” the way a person does — it’s running a probabilistic next-token prediction over and over.
What makes a model “large” is scale: billions of parameters trained on web-scale text, built on the transformer architecture Google introduced in the 2017 paper Attention Is All You Need. Transformers process an entire sequence at once and use an attention mechanism to weigh how every token relates to every other token — which is why they outperformed the older, sequential RNN approaches that read text one word at a time.
In search, LLMs do two different jobs. Older models like BERTSemantic search is meaning-based retrieval — matching what a user means, not just the words they typed. Search engines detect entities, expand synonyms, infer intent, and rank by conceptual relevance, which is why keyword stuffing lost its power and topical depth gained it. (an encoder-only, bidirectional model from 2019) help engines understand queries and documents for ranking. Newer generative models — Gemini in Google’s AI OverviewsAI Overviews are the AI-generated summary box Google shows above or within its regular search results, written by Gemini models from pages retrieved out of Google's normal Search index. It's a Search feature, not a separate platform or index., GPT-4 in Bing Copilot — generate the synthesized answers you see, usually by combining their training with fresh retrieved web content via RAGRAG is the retrieve-then-generate pattern behind AI search: the system retrieves relevant passages from an external index at query time, injects them into the model's context, and generates an answer grounded in those sources — without changing the model's weights. and groundingGrounding is anchoring an AI model's answer to source documents it retrieves at the moment you ask — not to the patterns frozen into its weights during training. Retrieval-Augmented Generation (RAG) is the most common way to do it.. Knowing which model is doing understanding versus generation is the single most useful distinction for SEOs trying to reason about AI searchAI search uses large language models and retrieval-augmented generation (RAG) to synthesize an answer from multiple sources rather than returning a ranked list of links. Examples include Google AI Overviews, ChatGPT Search, and Perplexity..
Related: Retrieval-Augmented Generation (RAG), Grounding, Knowledge Cutoff, Embeddings, AI Hallucinations
Build-time retrieval analysis plus live signals for this exact article. The automatic chunk report includes a deterministic readiness score and is ready without a model download.
Search Console
sampleGA4 traffic (28d)
sampleCloudflare traffic (7d)
sampledCrUX field data (28d, phone)
sampleGoogle NLP entities
localChangelog
Revision history
Compare the published article with an archived editorial snapshot. Added and removed words are shown only after you open a comparison.
Updated Jul 22, 2026.
Editorial summary and recorded change details.Summary
Corrected the attribution of Ahrefs' 75,000-brand AI Overview correlation study.
Change details
-
Replaced the incorrect first-person ownership claim with attribution to the study's authors, Louise Linehan and Xibeijia Guan.
Updated Jul 18, 2026.
Editorial summary and recorded change details.Summary
Sharpened the accuracy boundary between an LLM's training stages and inference, and added a benchmark-scoping caveat, per a research-backed accuracy review.
Change details
-
Added a paragraph in the Advanced lens explicitly separating pretraining/post-training weight updates from inference-time context, and clarifying that a large context window is not persistent memory or a training update.
-
Added a caveat next to the Gemini MMLU benchmark claim noting that benchmark scores are tied to the exact model version, test set, and evaluation date.
Full comparison unavailable — no prior snapshot was archived for this revision.