
A Large Language Model (LLM) is an AI system trained on vast amounts of text to understand and generate human language. LLMs are the technology behind chatbots like ChatGPT, Claude, and Gemini.
What it means in plain English
An LLM is, at its core, a system trained to predict the next word in a sequence. Given some text, it estimates the most likely next word, adds it, and repeats. Trained on enormous amounts of text and containing billions of parameters, this simple mechanism produces something remarkable: the ability to answer questions, write essays, translate languages, and draft code. The “large” refers both to the size of the training data and the number of parameters — typically billions.
Crucially, an LLM predicts likely text, not true text. This is why it can produce confident, fluent answers that are factually wrong — a behaviour called hallucination. Fluency is not the same as accuracy, which is the single most important thing to understand about using them.
A simple example
When you ask ChatGPT to “write a friendly email declining a meeting,” the LLM generates the response one word at a time, each choice based on the patterns it learned from billions of examples of human writing. It has never seen your exact request before, yet it produces a coherent, appropriate email — because it has absorbed the deep patterns of how such emails are written.
Why it matters
LLMs are the reason AI became a mainstream tool. They power the assistants millions of people now use daily for writing, coding, and research. Understanding what they are — powerful next-word predictors, not knowledge databases or reasoning engines — is the key to using them well and knowing when to double-check their output.
Related terms
- Transformer — the neural-network architecture that makes LLMs possible.
- Token — the chunks of text an LLM actually processes.
- Hallucination — when an LLM confidently states something false.
- Context Window — how much text an LLM can consider at once.
Frequently asked questions
What is a large language model?
An LLM is an AI model trained on vast amounts of text to understand and generate human-like language, powering chatbots, writing tools, and many AI applications.
How do LLMs generate text?
They predict the next token (piece of text) repeatedly based on the context so far, producing fluent responses one token at a time.