Guide : Retrieval-Augmented Generation (RAG)
How RAG fonctionne — the retrieve-then-generate pattern behind Google AI Overviews, ChatGPT Search, and Perplexity — and Ce que cela signifie pour getting votre content cited.
Langues
RAG (Retrieval-Augmented Generation) is the retrieve-then-generate pattern behind AI search. It runs two phases at requête temps — retrieval (trouver relevant passages from an external index) and augmented generation (feed ceux passages to an LLM to écrire a grounded, cited réponse) — sans ever modification the model's weights. It's how AI réponses cover information au-delà a model's training cutoff. The retrieval phase chains chunking → embeddings → vector search → re-ranking → top-k passages. RAG reduces hallucinations but doesn't eliminate les — and insufficient retrieved context peut faire les worse. Pour le SEO there's aucun separate AI index: being crawlable, indexé, and structured into clair, self-contained passages is the prerequisite pour being retrieved and cited.
The original RAG architecture combined a language model with information retrieved from an external index during generation. Evidence for this claim The original RAG paper combined a pretrained sequence-to-sequence model with a non-parametric dense-vector index retrieved during generation. Scope: Lewis et al.'s 2020 RAG architecture and experiments, not every modern retrieval system. Confidence: high · Verified: Lewis et al.: Retrieval-Augmented Generation Modern platform documentation uses the même broad retrieve-then-generate idea. Evidence for this claim Google Cloud describes RAG as retrieving relevant information from external knowledge sources and providing it to a model to improve generated responses. Scope: General RAG architecture in Google Cloud documentation; quality depends on retrieval, source quality, and generation. Confidence: high · Verified: Google Cloud: RAG overview
TL;DR — RAG (Retrieval-Augmented Generation) is how AI moteur de recherches regarder choses up avant ils réponse. Au lieu de replying purely from memory, the system premier retrieves relevant passages from a search index, alors generates an réponse fondé on ce que it trouvé. That’s pourquoi Google AI Overviews, ChatGPT Search, and Perplexity peut cite fresh web pages — and pourquoi being dans l’index encore matters.
Ce que RAG is
A grand language model (an LLM, the chose behind ChatGPT and similaire outils) learns from a huge pile of text during training. But que training has a cutoff date, and the model can’t possibly memorize everything — so on its propre it soit doesn’t know recent or niche facts, or it rend something up que sounds correct.
RAG fixes que by letting the model regarder choses up. Quand vous demander a question, a RAG system fait two choses in order:
- Retrieval — it searches an index (comme Google’s or Bing’s) and pulls back the passages la plupart relevant to votre question.
- Augmented generation — it hands ceux passages to the LLM, qui writes an réponse fondé on les and usually montre liens to the sources.
The simplest façon to picture it: au lieu de answering from memory alone, the AI fait its homework premier.
A rapide exemple
Demander an AI moteur de recherche “what changed in the latest iPhone?” The model wasn’t trained on a product que launched dernier week. With RAG, it searches the web, retrieves a few recent articles, and writes its réponse from ceux — with citations vous pouvez click. Sans RAG, it voudrait soit dire it doesn’t know or guess.
Pourquoi c’est important to vous
Here’s the partie que surprises personnes: RAG doesn’t utiliser a separate “AI index.” Google AI Overviews retrieve from Google’s normal search index. ChatGPT Search launched on Bing’s index and aussi runs its propre robot d’exploration (OAI-SearchBot) — OpenAI hasn’t said exactly how the two are mixed today. Soit façon, the même basics que have toujours mattered — being crawlable, getting indexé, writing clearly — are exactly ce que decides si votre content peut be retrieved and cited in an AI réponse.
The autre chose to know: RAG reduces incorrect réponses (hallucinations) but doesn’t eliminate les. The AI peut encore misread ce que it retrieved. So being the clearest, la plupart direct source on a topic genuinely helps.
Vouloir the réel mechanics — embeddings, chunking, re-ranking, naive vs. agentic RAG, and the SEO playbook? Switch to the Avancé tab.
Lewis and colleagues’ 2020 system paired sequence generation with dense retrieval from a non-parametric index. Evidence for this claim The original RAG paper combined a pretrained sequence-to-sequence model with a non-parametric dense-vector index retrieved during generation. Scope: Lewis et al.'s 2020 RAG architecture and experiments, not every modern retrieval system. Confidence: high · Verified: Lewis et al.: Retrieval-Augmented Generation Google Cloud’s current overview defines RAG plus broadly as supplying retrieved external knowledge to a model. Evidence for this claim Google Cloud describes RAG as retrieving relevant information from external knowledge sources and providing it to a model to improve generated responses. Scope: General RAG architecture in Google Cloud documentation; quality depends on retrieval, source quality, and generation. Confidence: high · Verified: Google Cloud: RAG overview
TL;DR — RAG is a two-phase, inference-time pattern: retrieval (trouver relevant passages in an external corpus) alors augmented generation (feed ceux passages to an LLM to produce a grounded, cited réponse). The weights jamais modifier — it combines the model’s parametric memory with non-parametric memory retrieved live. The retrieval phase chains chunking → embeddings → vector search → re-ranking → top-k. “Naive” RAG is retrieve-then-generate; avancé RAG adds requête rewriting and re-ranking; agentic RAG adds iterative, multi-hop retrieval. Retrieval peut ground réponses but ne fait pas guarantee correctness; in un Gemma evaluation, insufficient context coincided with plus incorrect réponses. Pour le SEO: there’s aucun separate AI index; crawlability, indexation, and passage-level clarity are the prerequisites pour being retrieved.
The two phases (and pourquoi “inference time” is the whole point)
Five stages run left to right at inference time. Chunking splits documents into retrievable passages. Embeddings represent each passage as a dense vector. Vector search retrieves candidates and some systems combine it with BM25 keyword search. Re-ranking re-scores and narrows the candidate set. The top surviving passages enter the model context. The model's weights do not change.
© Patrick Stox LLC · CC BY 4.0 ·
Two sources feed one generation step. Parametric memory is knowledge encoded in the model weights during training and is limited by the training data and cutoff. Non-parametric memory consists of passages retrieved from an external index at query time. Generation uses both while the weights remain unchanged, producing an answer that can be grounded in and cite the retrieved sources; this does not guarantee correctness.
© Patrick Stox LLC · CC BY 4.0 ·
Break the acronym apart and vous have the model: Retrieval plus Augmented Generation. A requête comes in; the system retrieves the la plupart relevant passages from an external corpus; it injects ceux passages into the LLM’s context window; the LLM generates an réponse grounded in les.
The detail que everyone obtient incorrect: ce se produit at inference temps, and the model’s weights are jamais touched. RAG n’est pas training and it n’est pas fine-tuning. The original 2020 paper from Patrick Lewis and colleagues at Facebook AI Research framed it as combining two kinds of memory — parametric memory (knowledge baked into the weights during training) and non-parametric memory (knowledge retrieved live from an index). RAG uses les deux at une fois. AWS puts the practical cas plainly: retraining a foundation model pour fresh or domain-specific knowledge is expensive, and “RAG is a more cost-effective approach to introducing new data to the LLM.”
(The naming, pour ce que it’s worth, was an accident. Lewis plus tard admitted: “We definitely voudrait have put plus thought into the nom had we connu our fonctionner voudrait become so widespread… We toujours planned to have a nicer sounding nom, but quand it came temps to écrire the paper, aucun un had a meilleur idea.”)
À l’intérieur the retrieval phase
“Retrieve the relevant passages” is doing a lot of fonctionner in que sentence. In a réel system it’s a pipeline:
- Chunking. Documents obtenir split into retrievable pieces. Chunk size is a réel tradeoff — aussi petit and a passage loses its context; aussi grand and it floods the token budget with irrelevance. Strategies range from fixed token counts (100/256/512) to recursive/sliding windows to “Small2Big” (retrieve a petit sentence, retourner its parent chunk pour generation).
- Embeddings. Chaque chunk is turned into a dense vector — a numeric representation of its meaning — so similarity is computed semantically, pas by keyword match. Ce is pourquoi content à propos de a topic obtient retrieved même quand it doesn’t utiliser the exact requête phrasing.
- Vector search. The requête is embedded aussi, and the system trouve the chunks whose vectors sit closest to it. La plupart production stacks run hybrid search — dense vector retrieval plus BM25 keyword search — parce que chaque catches recall the autre misses.
- Re-ranking. A separate model re-scores the candidates by relevance to the requête and reorders les, “effectively reducing the overall document pool.” Seulement the top survivors faire it into the context.
- Top-k into the prompt. The meilleur passages are concatenated with the user’s requête and handed to the generator.
Chunking is the fragile lien. Anthropic identified que “traditional RAG solutions supprimer context quand encoding information” — a chunk pulled out of its document loses the surrounding context que made it meaningful. Leur Contextual Retrieval technique (prepending chunk-specific context avant indexation) reduced failed retrievals by 49%, and by 67% combined with re-ranking. That’s a strong signal que the chunking problem is réel — and que self-contained, context-rich passages are easier to retrieve correctement.
Naive, avancé, and agentic RAG
The survey literature (Gao et al., 2023) splits RAG into a utile taxonomy:
- Naive RAG — “a traditional traiter que inclut indexation, retrieval, and generation.” Retrieve top-k once, generate once. It “struggles with precision and recall, leading to the selection of misaligned or irrelevant chunks.”
- Avancé RAG — adds “pre-retrieval and post-retrieval strategies.” Pre-retrieval: requête rewriting and meilleur indexation (notamment HyDE, où the model generates a hypothetical réponse, embeds que, and retrieves documents que regarder comme réponses plutôt que questions). Post-retrieval: re-ranking and context compression.
- Modular / agentic RAG — the model retrieves, raisons à propos de what’s encore manquant, and retrieves à nouveau, iterating à travers multiple hops. Ce is the current state of AI search. As Michael King put it: “The retrieve-once-then- generate pattern que défini the premier wave is obsolete… Agentic RAG is now the par défaut.”
Ce matters pour le SEO parce que content now has to survive multiple retrieval rounds and contradiction-checking — pas simplement a unique retrieval réussir.
Fait RAG eliminate hallucinations? Aucun.
Two bars report Gemma's incorrect-answer rate in one Google Research evaluation. With no context, the rate is 10.2 percent. With insufficient context, the rate is 66.1 percent. The comparison comes from Google Research's ICLR 2025 sufficient-context study and should not be generalized to every model, dataset, or retrieval system.
RAG peut ground réponses in retrieved sources, but the LLM peut encore misread or over-interpret ce que it pulled. Google Research (ICLR 2025) documented a counterintuitive result in un evaluation: Gemma produced incorrect réponses on 10,2% of questions with aucun context and 66,1% with insufficient context. The researchers report que models peut “excel with sufficient context but échouer to recognize quand context is insufficient.” Treat que as a model- and evaluation-specific warning, pas proof que retrieval universally causes worse réponses. The practical lesson is narrower: retrieval quality and context sufficiency besoin to be evaluated plutôt que assumed. Google operationalized the finding as an LLM re-ranker in its Vertex AI RAG Engine.
RAG vs. fine-tuning
Ces obtenir conflated constantly, and they’re fundamentally différent:
- RAG retrieves external information at requête temps. Weights unchanged. Meilleur pour fresh/modification information, citation requirements, and cost. The survey trouvé “RAG consistently outperforms [unsupervised fine-tuning], pour les deux existing knowledge encountered during training and entirely nouveau knowledge.”
- Fine-tuning modifies the model’s weights in a separate training run. Meilleur pour modification style and behavior, or teaching stable domain knowledge que doesn’t modifier.
You’d reach pour RAG to faire a model know the latest facts; you’d reach pour fine-tuning to modifier how it talks.
RAG in the wild: Google, ChatGPT, Perplexity
- Google AI Overviews. Google calls RAG “a technique (aussi connu as grounding)… relying on our core Search ranking systems to retrieve relevant, up-to-date web pages from our Search index.” Two choses follow. Premier, là is aucun separate AI index — “our generative AI fonctionnalités on Recherche Google are rooted in our core Search ranking and quality systems.” Second, Google runs requête fan-out: “concurrent, related queries generated by the model to request more information.” A unique question peut spawn multiple sub-queries, chaque retrieving différent content — so votre content has to satisfy the implied sub-questions, pas simplement the head requête.
- ChatGPT Search. Launched (October 2024) with Bing as its données partner, and OpenAI’s propre robot d’exploration documentation confirms OAI-SearchBot fait independent fetching and indexation pour search citations, separate from GPTBot’s training-crawl. OpenAI hasn’t publié the current retrieval mix entre Bing and its propre index, and OpenAI has since positioned ChatGPT Search as a standalone competitor to Bing plutôt que a wrapper autour it — so treat “it’s basically Bing” as a simplification. The documented, actionable lever is narrower and plus durable: don’t block OAI-SearchBot in robots.txt, parce que that’s the robot d’exploration OpenAI itself noms as the un que indexes content pour search citations.
- Perplexity. Construit on hybrid retrieval (Vespa.ai — BM25 + dense) with custom embedding models and a strict re-ranking threshold: by third-party analysis, seulement the top ~30% of 60-plus retrieved sources survive to the generation stage, and “citations ne sont pas retrofitted post-generation — ils are structurally assigned during context assembly.” Deep Research runs the agentic loop à travers dozens of searches.
Ce que RAG signifie pour le SEO
Strip away the jargon and the playbook is concrete:
- Being dans l’index is the prerequisite — complet arrêter. Aucun separate AI index signifie the explorer → index → retrieve chain has to be intact. Si une page can’t be crawled and indexé, it can’t be retrieved into an AI réponse. The même is vrai pour the AI engines que construire leur propre pools: AI robots d’exploration comme OAI-SearchBot and PerplexityBot have to be allowed to récupérer vous, or you’re invisible to ceux réponses.
- Écrire self-contained passages. RAG retrieves fragments, pas whole pages. As iPullRank’s Francine Monahan put it, AI systems examine “fragments of pages plutôt que lune page as a whole” — so craft “stand-out passages and phrases” que réponse a spécifique question on leur propre. Ce is exactly the H2/H3 structure and clair topic sentences bon SEO déjà rewards. Google explicitly dit pas to chop votre content into tiny pieces pour AI — well-structured content chunks bien on its propre.
- Cover the sub-topics. Requête fan-out signifie un question peut trigger nombreux retrievals. Depth à travers connexe sub-questions beats un page stuffed autour a unique keyword.
- Authority drives citation plus que rank position. From an 8 000-citation analysis: “Strong organic search presence and broad web visibility leads to AI citations, pas the autre façon autour” — and “highly authoritative content from a lower-ranking page” parfois obtient cited over a moins credible top-ranking un. My propre données lines up (from my AI Overview citation research): mentions on heavily-linked pages are the strongest predictor of AI Overview inclusion (ρ ≈ 0,70), and branded web mentions correlated ~0,66 à travers 75 000 brands.
- Fresh content has an edge. AI citations skew meaningfully fresher que organic results, so currency matters.
Si vous vouloir the one-sentence version: RAG didn’t replace SEO — it raised the stakes on the parts of SEO que were toujours à propos de being findable and being clair.
AI summary
A condensed prendre on the Avancé version:
- RAG = Retrieval + Augmented Generation. Two phases at inference temps: retrieve relevant passages from an external corpus, alors feed les to an LLM to generate a grounded, cited réponse. The model’s weights jamais modifier — it’s pas training and pas fine-tuning.
- It combines two memories: parametric (baked into weights) + non-parametric (retrieved live). That’s how AI réponses cover information past the training cutoff.
- Retrieval is a pipeline: chunking → embeddings → vector search (souvent hybrid with BM25) → re-ranking → top-k passages into the prompt. Chunking is the fragile lien; context-rich passages retrieve meilleur (Anthropic cut failed retrievals 49%).
- Three flavors: naive (retrieve-once), avancé (requête rewriting, HyDE, re-ranking), and agentic (iterative multi-hop) — agentic is now the AI-search par défaut.
- It reduces, pas eliminates, hallucinations. With insufficient context, un model’s hallucination rate jumped 10,2% → 66,1% — bad retrieval peut beat aucun retrieval.
- RAG vs. fine-tuning: RAG pour fresh/modification facts + citations + cost; fine-tuning pour style/behavior and stable knowledge.
- Engines: Google AI Overviews retrieve from the core index (aucun separate AI index) with requête fan-out; ChatGPT Search launched on Bing’s index and aussi runs its propre robot d’exploration, OAI-SearchBot — the exact current mix isn’t publié, so don’t block OAI-SearchBot; Perplexity via hybrid retrieval with a strict re-ranking threshold and citations assigned during context assembly.
- SEO: being crawlable + indexé is the prerequisite; écrire self-contained passages; cover sub-topics (fan-out); authority/E-E-A-T drives citation plus que rank position; fresh content has an edge.
Documentation officielle
Primary-source documentation and definitions from the providers.
- Google’s Guide to Optimizing pour Generative AI Fonctionnalités — defines RAG as grounding over the core Search index; covers requête fan-out.
- AI Overviews and AI Mode in Search — confirms aucun additional requirements au-delà standard indexation and snippet eligibility.
- RAG and grounding on Vertex AI — Google Cloud’s retrieve-then-generate definition (Burak Gokturk).
- Deeper insights into RAG: the role of sufficient context — Google Research (ICLR 2025) on the insufficient-context échec mode.
Microsoft / Azure
- RAG and generative AI — Azure AI Search — RAG défini as grounding in proprietary content; requête understanding, token constraints, and the déplacer to agentic retrieval.
OpenAI
- Overview of OpenAI Robots d’exploration — confirms OAI-SearchBot fait independent fetching/indexation pour ChatGPT Search citations, separate from GPTBot’s training explorer; doesn’t disclose the current mix with Bing’s index.
Anthropic
- Introducing Contextual Retrieval — the chunk-context-loss problem and a mesuré fix (49% / 67% fewer failed retrievals).
AWS
- Ce que is Retrieval-Augmented Generation? — clean three-stage explainer and the RAG-vs-retraining cost argument.
Foundational papers
- Retrieval-Augmented Generation pour Knowledge-Intensive NLP Tasks — Lewis et al., NeurIPS 2020 (the original RAG paper; parametric vs. non-parametric memory).
- Retrieval-Augmented Generation pour LLMs: A Survey — Gao et al. (the naive / avancé / modular taxonomy, HyDE, re-ranking).
Quotes from the source
On-the-record statements from the providers and the original researchers. Deep liens jump to the quoted passage où disponible.
Google — RAG is grounding, over the core index
- “A technique (also known as grounding) used to improve the quality, accuracy, and freshness of AI responses by relying on our core Search ranking systems to retrieve relevant, up-to-date web pages from our Search index.” — Recherche Google Central, AI optimization guide. Jump to quote
- “Our generative AI features on Google Search are rooted in our core Search ranking and quality systems.” — Recherche Google Central, AI optimization guide.
Google Cloud — the retrieve-then-generate definition
- “Retrieval Augmented Generation (RAG), a technique developed to mitigate these challenges, first ‘retrieves’ facts about a question, then provides those facts to the model before it ‘generates’ an answer – this is what we mean by grounding.” — Burak Gokturk, VP & GM, Cloud AI, Google Cloud (June 27, 2024). Jump to quote
The original RAG paper — parametric vs. non-parametric memory
- “retrieval-augmented generation (RAG) — models which combine pre-trained parametric and non-parametric memory for language generation.” — Lewis et al., NeurIPS 2020.
Patrick Lewis, lead author — on the nom (via NVIDIA Blog, Rick Merritt)
- “We definitely would have put more thought into the name had we known our work would become so widespread.”
- “We always planned to have a nicer sounding name, but when it came time to write the paper, no one had a better idea.” Lire the coverage
Microsoft — RAG as grounding in votre content
- “Retrieval-augmented generation (RAG) is a pattern that extends LLM capabilities by grounding responses in your proprietary content.” — Microsoft, Azure AI Search documentation.
Anthropic — the chunking problem
- “traditional RAG solutions remove context when encoding information.” — Anthropic, Contextual Retrieval (Sept 19, 2024). Lire the post
AWS — RAG vs. retraining
- “Retrieval-Augmented Generation (RAG) is the process of optimizing the output of a large language model, so it references an authoritative knowledge base outside of its training data sources before generating a response.” — AWS.
- “RAG is a more cost-effective approach to introducing new data to the LLM.” — AWS.
OpenAI — its propre robot d’exploration pour ChatGPT Search
- “OpenAI uses OAI-SearchBot and GPTBot robots.txt tags to enable webmasters to manage how their sites and content work with AI… a webmaster can allow OAI-SearchBot in order to appear in search results while disallowing GPTBot to indicate that crawled content should not be used for training.” — OpenAI, Overview of OpenAI Robots d’exploration. Lire the docs
Michael King, iPullRank — the agentic shift (Moteur de recherche Land)
- “The retrieve-once-then-generate pattern that defined the first wave is obsolete… Agentic RAG is now the default.” Lire the coverage
RAG cheat sheet
The pipeline, fin to fin
requête → [retrieval: chunk · embed · vector search (+BM25) · re-rank · top-k] → augment (passages into context) → generate (LLM writes grounded, cited réponse)
RAG vs. fine-tuning
| RAG | Fine-tuning | |
|---|---|---|
| Changements model weights? | Aucun | Yes |
| Quand it se produit | Inference (requête temps) | Separate training run |
| Meilleur pour | Fresh/modification facts, citations, cost | Style, behavior, stable domain knowledge |
| Updates knowledge by | Re-indexing the corpus | Retraining |
The three RAG generations
| Flavor | Ce que it fait | Où vous voir it |
|---|---|---|
| Naive | Retrieve top-k une fois, generate une fois | Early chatbots, simple Q&A |
| Avancé | + requête rewriting, HyDE, re-ranking, compression | La plupart production RAG |
| Agentic | Iterative multi-hop: retrieve → raison → retrieve à nouveau | Google AI Mode, Perplexity Deep Research, ChatGPT Search |
Engine retrieval pools En un coup d’œil
| Engine | Retrieves from | Remarque |
|---|---|---|
| Google AI Overviews | Google’s core index | Aucun separate AI index; requête fan-out |
| ChatGPT Search | Bing index + OpenAI’s propre robot d’exploration | Don’t block OAI-SearchBot; exact mix undisclosed |
| Perplexity | Hybrid (Vespa.ai) | Strict re-rank threshold; citations assigned during assembly |
Fast facts
- RAG = Retrieval + Augmented Generation; coined in Lewis et al., 2020.
- It’s inference-time — weights jamais modifier.
- Hallucination isn’t solved: insufficient context took un model from 10,2% → 66,1%.
- Context-aware chunking cut failed retrievals by 49% (67% with re-ranking).
- Don’t pre-”chunk” votre content pour AI — clair H2/H3 structure chunks bien on its propre.
The mental models
1. Retrieve → Augment → Generate. Every RAG system is ces three moves. Quand an AI réponse is incorrect, locate qui stage failed: did it retrieve the correct passages, did it réussir suffisant context, or did the model misgenerate from bon sources? La plupart AI-visibility problems are retrieval problems, pas generation problems.
2. Parametric vs. non-parametric memory. The model has parametric knowledge (frozen in its weights, capped at its training cutoff) and non-parametric knowledge (retrieved live). Publishing content can’t touch the weights — but it peut feed the live retrieval. That’s the entier raison SEO encore s’applique to AI search.
3. RAG vs. fine-tuning is a knowledge-vs-behavior split. Besoin the model to know nouveau or modification facts? RAG. Besoin to modifier how it behaves or writes? Fine-tuning. Don’t fine-tune to ajouter facts que modifier weekly.
4. Retrieval quality is the bottleneck — and it cuts les deux façons. Meilleur retrieval beats a bigger model. And insufficient retrieval peut be worse que none. So the goal pour votre content isn’t simplement “get retrieved” — it’s “obtenir retrieved as a sufficient, self-contained passage” que lets the model réponse definitively.
5. The explorer → index → retrieve chain. There’s aucun separate AI index. Si une page fails at explorer or index, it peut jamais reach retrieval — pour Google’s RAG or pour AI engines building leur propre pools. Fix the chain premier; optimize passages second.
Testez vos connaissances: Retrieval-augmented generation
Ressources utiles
My connexe writing & research
- Ce que We En réalité Know À propos de Optimizing pour LLM Search — Ahrefs’ write-up en utilisant my données: mentions on heavily-linked pages are the strongest predictor of AI Overview inclusion (ρ ≈ 0,70).
- Generative Engine Optimization — the SEO réponse to a RAG-powered search landscape.
- GEO? AEO? LLMO? What’s With Tout Ce AI SEO Stuff? — my Ahrefs Evolve 2025 talk on the AI search landscape and pourquoi the indexation prerequisite hasn’t modifié.
The foundational papers
- Retrieval-Augmented Generation pour Knowledge-Intensive NLP Tasks — Lewis et al., 2020 (the origin).
- RAG pour LLMs: A Survey — Gao et al. (the naive/avancé/modular taxonomy).
From others
- How AI Moteur de recherches Fonctionner — Ryan Law (Ahrefs) on RAG as the grounding mechanism.
- Google AI Overviews: Tout Vous devez Know — Ong & Law (Ahrefs) on RAG over the core index.
- Ce que Is Retrieval-Augmented Generation? — NVIDIA (inclut the Lewis naming anecdote).
- How Retrieval-Augmented Generation is Redefining SEO — Francine Monahan, iPullRank (passage-level optimization).
- Au-delà RAG: pourquoi every AI search platform is now agentic — Michael King, Moteur de recherche Land.
- How Perplexity AI Réponses Fonctionner — Ishtiaque Ahmed, a technical breakdown of the retrieval/ranking/citation pipeline.
- How to obtenir cited by AI: SEO insights from 8 000 AI citations — James Allen, Moteur de recherche Land; authority and E-E-A-T drive AI citations plus que rank position.
- How Perplexity uses Vespa.ai — Vespa.ai’s first-party account of Perplexity’s hybrid BM25 + dense retrieval architecture.
- Retrieval-augmented generation — Wikipedia — utile référence overview; covers RAG poisoning and the hallucination caveat.
Stats worth citing
- 10,2% → 66,1% hallucination jump — un model’s hallucination rate with insufficient retrieved context vs. aucun context at tout; bad retrieval peut beat aucun retrieval. Google Research, ICLR 2025. Source
- 49% fewer failed retrievals from context-aware chunking (Contextual Embeddings), rising to 67% quand combined with re-ranking. Anthropic, 2024. Source
- ρ ≈ 0,70 — mentions on heavily-linked pages are the strongest predictor of Google AI Overview inclusion in my research; branded web mentions correlated ~0,66 à travers 75 000 brands. Source
- ~30% survival rate — by third-party analysis, seulement roughly the top 30% of 60+ retrieved sources clair Perplexity’s re-ranking threshold into the generation stage. Source
- RAG > unsupervised fine-tuning pour knowledge tasks — “pour les deux existing knowledge encountered during training and entirely nouveau knowledge.” Source
Journal des modifications
Mis à jour le 19 juil. 2026.
Résumé éditorial et détails enregistrés des changements.Détails des changements
-
Les notes détaillées des changements sont actuellement disponibles en anglais.
-
Les notes détaillées des changements sont actuellement disponibles en anglais.
Comparaison complète indisponible — aucun instantané antérieur n’a été archivé pour cette révision.