Grand Language Model (LLM)
Ce que a grand language model is, how it predicts text token by token, the LLMs powering AI search (Gemini, GPT-4), and ce que ils mean pour le SEO.
Langues
A grand language model (LLM) generates text by predicting the suivant token — it isn't reasoning the façon a human fait, it's running a probabilistic completion. LLMs are construit on the transformer architecture and split into two roles in search: understanding models comme BERT aider rank, pendant que generative models comme Gemini (Google AI Overviews) and GPT-4 (Bing Copilot) écrire the réponses. They're limited by a knowledge cutoff, a finite context window, and a tendency to hallucinate — qui is exactly pourquoi RAG and grounding exist. Pour le SEOs the practical news is boring: indexation is encore the prerequisite, brand mentions correlate with AI visibility plus strongly que backlinks, and 'normal SEO' is ce que obtient vous cited.
TL;DR — A grand language model (LLM) is the technology behind outils comme ChatGPT, Google’s AI Overviews, and Bing Copilot. It fonctionne by predicting the suivant word over and over, fondé on patterns it learned from a huge amount of text. It doesn’t “know” or “understand” choses the façon vous do — it’s making very bon statistical guesses. In search, LLMs lire web pages and écrire the AI réponses vous voir at the top of results.
Ce que an LLM is
Grand language models apprendre statistical patterns over token 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 aussi dépend on prompting, retrieval, outils, 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 grand language model is a computer program trained on an enormous amount of text — books, articles, websites — jusqu’à it obtient very bon at un task: guessing ce que word (or piece of a word) comes suivant.
That’s genuinely la plupart of the magic. Quand vous type a question, the model takes votre words and predicts the la plupart probable suivant bit of text, alors the suivant, alors the suivant, building up an réponse un piece at a temps. “Large” simplement signifie it’s huge — trained on billions of exemples with billions of internal settings.
The chose to garder in votre head: an LLM is predicting, pas thinking. It produces text que sounds correct parce que it learned the patterns of how language usually flows. La plupart of the temps que lines up with the truth. Parfois it doesn’t — and quand the model confidently rend something up, that’s appelé a hallucination.
How LLMs montrer up in search
Quand vous search and voir an AI-written summary at the top — Google calls it an AI Overview — an LLM wrote que. Here’s the rough flow:
- Vous type a question.
- The moteur de recherche trouve relevant web pages (the normal search step).
- It hands ceux pages to an LLM.
- The LLM reads les and writes a short réponse, usually with liens to its sources.
The important takeaway pour anyone with a website: the LLM is mostly summarizing pages the moteur de recherche déjà trouvé. So si votre page can’t be trouvé and indexé in the normal façon, it can’t montrer up in the AI réponse soit. The technique que feeds fresh web pages to the model is appelé retrieval-augmented generation (RAG), and it’s how ces outils stay current despite being trained on older données.
Qui LLMs power qui search
- Google uses its propre model family appelé Gemini pour AI Overviews and AI Mode.
- Bing / Microsoft Copilot uses OpenAI’s GPT-4 (customized pour search).
- Perplexity and ChatGPT Search are autre popular AI search outils.
- Claude (Anthropic) and Llama (Meta’s open-source model) are autre major LLMs you’ll hear named.
The chose la plupart personnes obtenir incorrect
Là is aucun secret “LLM SEO” que replaces regular SEO. Google’s propre personnes have said the façon to apparaître in AI Overviews is to utiliser normal SEO practices and obtenir indexé. Getting trouvé and indexé is encore the prerequisite — the AI couche sits on top of search, it doesn’t go autour it.
Vouloir the technical version — the transformer architecture, knowledge cutoffs, context windows, and ce que my brand research en réalité trouvé correlates with AI visibility? Switch to the Avancé tab.
TL;DR — An LLM estimates the probability of the suivant token and generates text autoregressively — that’s the whole engine. It runs on the transformer architecture, qui processes a complet sequence in parallel via attention plutôt que token-by-token comme RNNs. In search là are two distinct jobs: understanding (BERT-style encoders que aider rank) and generation (Gemini, GPT-4 writing AI réponses). LLMs are bounded by a knowledge cutoff, a finite context window, and hallucination — qui is precisely pourquoi RAG and grounding exist. Pour le SEO, indexation remains the prerequisite, and in Ahrefs’ 75 000-brand study by Louise Linehan and Xibeijia Guan text-based signals comme branded mentions correlated with AI Overview visibility roughly 3× plus strongly que backlinks.
Ce que an LLM en réalité is
An LLM n’est pas a database of guaranteed facts, and fluent output n’est pas 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 que utiliser LLMs may combine les 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 propre words, “estimates the probability of a token or sequence of tokens occurring dans a plus long sequence of tokens.” That’s the foundation. An LLM is a very grand version of que: a deep-learning model with billions of parameters trained to predict the suivant token à travers web-scale text.
Two choses faire it “large” and capable:
- Scale. Billions of parameters, trained on enormous corpora. As models grow, capabilities comme summarization, reasoning, and code generation commencer to emerge sans being explicitly programmed in.
- The transformer architecture. Introduced in Google’s 2017 paper Attention Is Tout Vous Besoin, transformers traiter a whole sequence at une fois and utiliser an attention mechanism so chaque token peut “look at” every autre token. Google’s ML Crash Course frames the contrast directement: grand language models “peut evaluate the whole context at une fois,” unlike older recurrent neural networks que processed “token by token” and suffered the “vanishing gradient problem.”
The model is trained by next-token prediction on raw text, alors typically refined with RLHF (reinforcement learning from human feedback) to faire it plus utile and safer. At inference it generates autoregressively — un token at a temps, chaque prediction fed back in as input pour the suivant. A setting appelé temperature contrôle how random que sampling is.
It helps to garder the stages separate, parce que personnes conflate les 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 où the weights en réalité obtenir définir — the model learns broad statistical patterns from next-token prediction à travers a huge corpus. Post-training (RLHF and similaire preference-tuning steps) adjusts ceux même weights à nouveau, toward instructions and safety behavior. Inference — ce que se produit quand vous send it a prompt — doesn’t mettre à jour the weights at tout; the model simplement s’applique whatever it learned in the two training stages to the text vous hand it. That’s aussi pourquoi a long context window isn’t the model “learning” à propos de vous: the supplémentaire text is input pour que un requête, pas a training mettre à jour, and it’s gone une fois the session ends unless a separate product fonctionnalité saves and re-feeds it as memory.
Garder the mental model honest: ce is a probabilistic traiter. The model produces plausible completions, pas verified facts.
Understanding vs. generation: two différent jobs
Ce is the distinction que clears up la plupart LLM-in-search confusion.
- BERT (2019) is an encoder-only, bidirectional model. Google: it considers “the complet context of a word by looking at the words que come avant and après it.” BERT’s job is understanding — interpreting requêtes and documents to améliorer ranking. It doesn’t generate réponses. Google said BERT voudrait “aider Search meilleur comprendre un in 10 searches in the U.S. in English,” and Pandu Nayak appelé it “the biggest leap forward in the past five years.”
- Gemini / GPT-4 are generative models (decoder-style, autoregressive). Leur job is generation — synthesizing the AI Overview or Copilot réponse text from retrieved passages.
So quand an SEO demande “does the LLM rank my page?” the honest réponse is: a BERT-style understanding model has long influenced ranking; a generative model comme Gemini writes the AI summary over whatever the retrieval step surfaced. Différent models, différent stages.
Google’s LLM evolution in search
A rough timeline, parce que the lineage matters:
- 2017 — Attention Is Tout Vous Besoin (Google Research): the transformer paper everything sinon is construit on.
- 2019 — BERT: premier transformer LLM in Google ranking; “one in 10 searches.”
- 2021 — MUM: a ~110-billion-parameter, T5-fondé model Google billed as “1 000 times plus powerful que BERT,” multimodal and trained à travers 75+ languages.
- 2023 — Gemini: “built from the ground up to be multimodal,” pre-trained on multiple modalities from the commencer; shipped in Ultra / Pro / Nano variants. Google reported it as the premier model to “outperform human experts on MMLU” (90,0%). (Benchmark numbers comme que un are tied to the exact model version, tester définir, and evaluation date the lab utilisé at the temps — ils don’t automatically carry over to plus tard updates of the même model family.)
- 2024 — AI Overviews (graduating from SGE): the generative couche arrives on the results page.
- 2025 — AI Mode + Gemini 3: Elizabeth Reid décrit 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 par défaut pour 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 que “the nouveau Bing is running on GPT-4, qui we’ve customized pour search,” and that “as OpenAI rend updates to GPT-4 and au-delà, Bing benefits from ceux improvements.”
The piece que connects a frozen LLM to the live web is Microsoft’s Prometheus model — décrit as a model combining the fresh Bing index with the reasoning of GPT. The Copilot pipeline reformulates votre requête into search strings, retrieves from the Bing index, and has GPT synthesize a grounded, cited réponse. (Remarque: que detailed pipeline breakdown comes from third-party technical analysis, pas a premier- party Microsoft spec — treat the step-by-step as industry-reported.)
How AI Overviews en réalité generate an réponse (the RAG pipeline)
The raison ces systems peut réponse à propos de today’s news despite an old training cutoff is retrieval-augmented generation. Google Cloud’s propre definition: RAG “combines the strengths of traditional information retrieval systems with the capabilities of generative grand language models.” Conceptually:
- Vous submit a requête.
- Complex requêtes obtenir decomposed — Google’s requête fan-out — into sub-queries.
- Chaque sub-query retrieves candidate passages from the index.
- Ceux passages are injected into the LLM’s context window — ce is grounding, anchoring the réponse to retrieved sources plutôt que training données alone.
- The LLM generates a synthesized réponse with citations.
- Safety and quality checks run, and the réponse is renvoyé.
The SEO implication is a chain of gates. Votre content has to be (a) crawlable by AI bots, (b) indexé, (c) surfaced by retrieval, (d) selected over competing passages, and (e) represented accurately in the output. Falling out at quelconque stage signifie you’re pas in the réponse.
Limitations que matter to SEOs
| Limitation | Ce que cela signifie pour vous |
|---|---|
| Knowledge cutoff | The model knows nothing past its training date unless RAG supplies fresh content. Cutoff ≠ release date — ils peut differ by months. GPT-5’s training cutoff is reported as September 2024. |
| Context window | An LLM peut seulement traiter a finite amount of text at une fois, mesuré in tokens. Ce bounds how beaucoup retrieved content peut be fed in — and it’s pourquoi chunking matters in retrieval. |
| Hallucination | The model generates plausible-sounding completions que peut be incorrect. It’s a statistical artifact, pas lying. Ahrefs research trouvé AI assistants send visitors to 404 pages 2,87× plus souvent que Recherche Google. |
| JavaScript coverage risk | AI-crawler rendering varies by provider, so JS-dependent content peut be missed quand a fetcher uses seulement 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 seulement the premier ~30 passages of une page — content buried deep may jamais be retrieved. |
Ce que cela signifie pour votre content strategy
A few choses I’m comfortable saying, separated from the choses nobody outside the engines en réalité knows:
- Indexation is encore the prerequisite. Gary Illyes was blunt: “To obtenir votre content to apparaître in AI Overview, simply utiliser normal SEO practices.” There’s aucun confirmed special LLM-targeting signal. And on the much-hyped llms.txt fichier, Illyes said “Google doesn’t support LLMs.txt and isn’t planning to,” with John Mueller comparing it to the old meta keywords tag.
- Brand mentions beat backlinks pour 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 pour backlinks — text-based signals correlated roughly 3× plus strongly que lien metrics. As we put it, LLMs “derive leur understanding of a brand’s authority from words on lune page, from the prevalence of particulier words, the co-occurrence of différent terms and topics, and the context in qui ceux words are utilisé.”
- It’s winner-takes-all. Brands in the top quartile pour web mentions averaged 169 AI Overview mentions versus 14 pour the suivant quartile — and 26% of studied brands had zero. High-authority, high-traffic placements compound votre AI visibility.
- Freshness helps. À travers a 17-million-citation analysis, AI assistants preferred citing content meaningfully newer que ce que typically apparaît in organic results.
- Don’t reflexively block AI robots d’exploration. Blocking probable forfeits AI visibility with aucun SEO upside. And remember the JS blind spot ci-dessus — si votre content nécessite JavaScript to apparaître, la plupart AI robots d’exploration won’t voir it.
And the honest caveat: the engines consistently éviter revealing how the ranking side of AI Overviews fonctionne. The confirmed story is “get indexed, do normal SEO.” Everything past que is inference — mine inclus.
AI summary
A condensed prendre on the Avancé version:
- An LLM predicts the suivant token and generates text autoregressively — a probabilistic traiter, pas human reasoning. It runs on the transformer architecture (2017’s Attention Is Tout Vous Besoin), qui uses attention to traiter a complet sequence in parallel au lieu de token-by-token comme RNNs.
- Two jobs in search: understanding (BERT — encoder-only, bidirectional, helps ranking, doesn’t generate) vs. generation (Gemini, GPT-4 — écrire the AI réponses).
- Training vs. inference: pretraining and post-training (RLHF) are où the model’s weights en réalité obtenir définir; sending it a prompt at inference doesn’t mettre à jour ceux weights — a big context window is input pour que un requête, pas memory or a training mettre à jour.
- Google’s lineage: BERT (2019) → MUM (2021, ~110B params, “1,000× BERT”) → Gemini (2023, multimodal) → AI Overviews (2024) → Gemini 3 as the par défaut pour AI Overviews (2026).
- Bing Copilot runs on GPT-4 “customized for search,” bridged to the live Bing index via the Prometheus model.
- AI Overviews utiliser RAG: requête fan-out → retrieve passages → ground les in the LLM’s context window → generate a cited réponse. Votre content doit be crawlable, indexé, retrieved, selected, and accurately represented.
- Clé limites: knowledge cutoff (≠ release date), finite context window, hallucination (AI outils hit 404s 2,87× plus que Google), aucun JS rendering, and passage chunking (~200-word passages, ~premier 30 analyzed).
- Pour le SEO: indexation is the prerequisite (“simply use normal SEO practices”); branded mentions correlated ~3× stronger que backlinks with AI Overview visibility in the 75K-brand study; AI visibility is winner-takes-all; freshness helps; don’t reflexively block AI robots d’exploration.
Documentation officielle
Primary-source documentation on LLMs in search.
- Google ML Crash Course — Grand Language Models — Google’s propre definition of a language model and the token-probability explanation.
- Understanding searches meilleur que ever avant (BERT) — Pandu Nayak’s 2019 post introducing BERT into ranking.
- Introducing Gemini: our largest and la plupart capable AI model — the December 2023 multimodal architecture announcement.
- Gemini 3 in Search and AI Mode — Elizabeth Reid on reasoning, multimodality, and requête fan-out (Nov 2025).
- AI Mode and AI Overviews updates — Robby Stein confirming Gemini 3 as the par défaut pour AI Overviews (Jan 2026).
- Retrieval-Augmented Generation (RAG) on Google Cloud — the official RAG framing and how Gemini grounds réponses.
Bing / Microsoft
- Confirmed: the nouveau Bing runs on OpenAI’s GPT-4 — Microsoft confirming GPT-4 customized pour search (Mar 2023).
Quotes from the source
On-the-record statements from Google and Microsoft. Chaque lien is a deep lien que jumps to the quoted passage on the source page.
Google — ce que a language model is
- “BERT 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 par défaut pour AI Overviews
- “Gemini 3 is now the default model for AI Overviews, giving you better AI responses.” — Robby Stein, VP of Product, Recherche Google (Jan 2026). Jump to quote
Google — RAG and grounding
- “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 pour AI Overviews
- “To get your content to appear in AI Overview, simply use normal SEO practices.” — Gary Illyes, Recherche Google Relations (as reported by Moteur de recherche Land, Jul 2025). Lire 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
Qui model fait ce que
| Model | Maker | Role in search | Type |
|---|---|---|---|
| BERT | Understanding requêtes/documents pour ranking | Encoder-only, bidirectional | |
| Gemini | Generates AI Overviews & AI Mode réponses | Generative (multimodal) | |
| GPT-4 | OpenAI | Powers Bing Copilot (customized pour search) | Generative, autoregressive |
| Claude | Anthropic | General AI assistant / chat search | Generative, autoregressive |
| Llama | Meta | Open-source model utilisé widely off-platform | Generative, autoregressive |
Core concepts
- Token — the chunk of text the model predicts (souvent a word-piece).
- Next-token prediction — the entier generation engine; runs autoregressively.
- Transformer / attention — processes a complet sequence in parallel; replaced RNNs.
- Knowledge cutoff — dernier training date; pas the release date.
- Context window — max tokens processable at une fois; bounds RAG chunk sizes.
- Temperature — contrôle randomness of the next-token sampling.
- RAG / grounding — feeds fresh retrieved web content into the context window.
- Hallucination — a confident, plausible, incorrect completion (a statistical artifact).
SEO fast facts
- Indexation is the prerequisite — “simply use normal SEO practices.”
- Google fait pas prise en charge llms.txt and isn’t planning to.
- Branded web mentions correlated ~3× stronger que backlinks (75K-brand study).
- AI-crawler rendering 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 token donné the context so far. “Plausible” is the target, pas “true.” Hallucination isn’t a bug bolted on — it’s the même mechanism producing a wrong-but-fluent completion.
2. Two jobs: understanding vs. generation. BERT-style encoders comprendre requêtes and documents (ranking). Gemini/GPT-style generators écrire the réponse over retrieved passages. Quand vous demander “how fait the LLM treat my page,” premier demander qui LLM and qui stage.
3. The frozen model + the live web. The model’s knowledge is frozen at its cutoff. RAG and grounding bolt on a live retrieval step so the réponse reflects today’s pages. Sans retrieval, you’re asking a model à propos de a world it jamais saw.
4. The AI-answer gate chain. To apparaître in an AI Overview votre content doit clair five gates in order: crawlable → indexé → retrieved → selected → accurately represented. Diagnose by finding the premier gate you’re failing, pas by guessing.
5. Mentions over liens pour AI visibility. The model builds its sense of a brand from words on pages — prevalence, co-occurrence, context. That’s pourquoi branded mentions out-correlated backlinks ~3× in the 75K-brand study. Earn talked-about-ness, pas simplement linked-to-ness.
LLM assumptions que lead to bad SEO decisions
Treating fluent output as verified reasoning
An LLM predicts a sequence of tokens, and confidence in the prose n’est pas evidence que a claim is vrai. Vérifier consequential claims and inspect the sources supplied by retrieval.
Assuming every model plays the même role in search
Understanding models peut aider interpret and rank requêtes pendant que generative models compose réponses. Identifier the system stage avant turning a general model capability into an optimization recommendation.
Replacing crawlability with prompt tactics
Search-grounded systems encore besoin accessible, indexable source material. Clair prompts ne peut pas faire an unavailable page enter the retrieval candidate définir.
Testez vos connaissances: Grand language models
Ressources utiles
My connexe writing
- Ce que We En réalité Know À propos de Optimizing pour LLM Search — the 75K-brand study, Chrome chunking research, and freshness données.
- An Analysis of AI Overview Brand Visibility Factors (75K Brands Studied) — the complet correlation table behind “mentions beat backlinks.”
- LLM Visibility: Ce que c’est and How to Optimize pour It — the 17M-citation freshness analysis and the JavaScript rendering blind spot.
- The Complet AI Visibility Guide pour le SEOs, Marketers, and Site Owners — content formats AI assistants tend to favor.
- Ce que is llms.txt, and Devrait Vous Care À propos de It? — pourquoi there’s aucun evidence llms.txt improves AI retrieval.
From others
- Google ML Crash Course — LLM — the clearest official primer on ce que a language model is.
- Attention Is Tout Vous Besoin (Google Research, 2017) — the original transformer paper que BERT, Gemini, and GPT are tout construit on.
- Google previews MUM — 1 000× plus powerful que BERT (Moteur de recherche Land) — the May 2021 announcement of Google’s T5-fondé 110B-parameter multimodal model.
- Google dit normal SEO fonctionne pour ranking in AI Overviews (Moteur de recherche Land) — Gary Illyes and John Mueller quotes from the July 2025 Search Central Deep Dive.
- How Microsoft Copilot Search Fonctionne: Architecture Deepdive (Rankly) — detailed breakdown of the Prometheus model, the four-stage RAG pipeline, and how Bing bridges GPT-4 to the live index.
- LLM knowledge cutoff dates (allmo.ai) — regularly mis à jour table of training cutoff dates à travers GPT, Claude, Gemini, and Llama model families.
- r/TechSEO — the community pour AI-search and indexation debugging.
Stats worth citing
- Mentions beat backlinks pour AI visibility. In the 75 000-brand study, branded web mentions correlated ≈0,66 with AI Overview appearances versus ≈0,22 pour backlinks — text-based signals ~3× stronger que lien metrics. Source
- Winner-takes-all. Top-quartile brands by web mentions averaged 169 AI Overview mentions vs. 14 pour the suivant quartile; 26% of studied brands had zero. Source
- AI outils hit plus dead ends. À travers ~16M URLs, AI assistants sent visitors to 404 pages 2,87× plus souvent que Recherche Google — a hallucination side effect. Source
- AI favors fresher content. À travers ~17M citations, AI assistants preferred citing content meaningfully newer que ce que typically apparaît in organic results. Source
- AI-crawler rendering varies by provider — JS-dependent content peut be missed during retrieval, so raw HTML maximizes coverage. Source
Journal des modifications
Mis à jour le 22 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.
Comparaison complète indisponible — aucun instantané antérieur n’a été archivé pour cette révision.
Mis à jour le 18 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.