ModelRefs / Large Language Model — AI Glossary

Large Language Model — AI Glossary

A neural network trained on massive text corpora to generate, summarize, classify, and reason about natural language. Also called LLM or Large Language Model.

Overview

Large Language Models (LLMs) are transformer-based neural networks with billions or trillions of parameters, trained on web-scale text to predict the next token. Modern LLMs power assistants such as GPT-5, Claude, and Gemini and serve as the foundation for agents, RAG systems, and copilots.

Reference details

Topicmodels
Also known asLLM, Large Language Model
Last reviewed2026-06-24

Example: Next-token prediction, made concrete

Given “The capital of France is”, the model produces a probability distribution over the next token — “ Paris” very likely, “ a” far less so — samples one, appends it, and repeats. Everything else, including apparent reasoning, is built on that loop. It explains the characteristic failure too: a confident wrong answer is simply a high-probability continuation that happens to be false.

Commonly confused with

An LLM is not a database or a search engine. It has no lookup table to consult and no notion of whether a statement is true — only which continuation is likely. That is why grounding, tools and citation exist: they add the checks the architecture does not provide.

When to use it

Reach for it when:

  • The task is language: generating, transforming, classifying or summarising text
  • The input is unstructured and the rules are hard to enumerate
  • An approximate answer with human review beats no answer

Reach for something else when:

  • A deterministic result is required and a rule or query would give it
  • The cost of a confident wrong answer is high and nothing checks the output
  • The task is arithmetic or lookup — give it a tool instead

Referenced by

This term is used by the following ModelRefs references:

Continue your research

Use these connected ModelRefs sections to compare alternatives, inspect implementation paths, and review the evidence and governance boundaries relevant to Large Language Model — AI Glossary.

Frequently asked questions

What is Large Language Model?

A neural network trained on massive text corpora to generate, summarize, classify, and reason about natural language.

Is Large Language Model the same as LLM?

Yes — LLM, Large Language Model are common aliases for Large Language Model.

What concepts are related to Large Language Model?

Closely related concepts include token, context window, inference, fine tuning.