What is an LLM?.
An LLM (large language model) is an artificial intelligence program trained on very large amounts of text to understand and generate language. It works by predicting, step after step, the most likely continuation of a text.
It is the technology running ChatGPT, Claude, Gemini, Mistral's Le Chat or DeepSeek. When people talk about "generative AI" for text, they almost always mean an LLM.
The three letters read as follows:
- Large: the model is trained on huge volumes of text, and has a very large number of parameters, the internal settings it adjusts during training.
- Language: it handles language, human or computer (code is a language like any other).
- Model: it is a statistical model, not a database. It does not "look up" an answer, it builds one.
How an LLM works.
Without the math, an LLM always follows the same mechanics:
| Step | What happens | In practice |
|---|---|---|
| 1. Tokenization | The text is split into tokens, pieces of words | According to Anthropic, a token is about 4 characters in English |
| 2. Context | The model reads everything it is given: instructions, documents, history | Up to 1 million tokens for Claude Opus 5.5 or DeepSeek V4 |
| 3. Prediction | It computes the most likely next token, then starts again | That is why answers appear word by word |
| 4. Reasoning | Recent models can "think" before answering | Thinking mode on by default on Opus 5.5 or DeepSeek V4 |
Before getting there, a model goes through two main phases: pre-training on huge volumes of text, where it learns language and a large amount of knowledge, then fine-tuning, where it learns to follow instructions, answer helpfully and refuse certain requests.
The context window is how much text the model can read at once. According to Anthropic, 1 million tokens is roughly 555,000 English words: enough to analyze dozens of contracts at once.
The main LLMs in 2026.
Here are the major model families and their current versions, according to official pages as of September 27, 2026:
| Vendor | Models | Access | Published weights |
|---|---|---|---|
| OpenAI (US) | GPT-6 Astra, GPT-5.6 | ChatGPT, API | For gpt-oss (Apache 2.0), not for GPT-6 |
| Anthropic (US) | Claude Opus 5.5, Sonnet 5, Haiku 4.5, Fable 5.1 | Claude app, API | No |
| Google (US) | Gemini 3.1 Pro | Gemini app, API | For Gemma (Apache 2.0), not for Gemini |
| Mistral AI (France) | Mistral Medium 3.5, Mistral Large 3, Mistral Small 4 | Vibe (formerly Le Chat), API | Large 3 and Small 4 under Apache 2.0, Medium 3.5 under its own license |
| DeepSeek (China) | DeepSeek-V4.1-Flash, V4-Pro | App, API | Yes, MIT license |
The "published weights" column was checked on Hugging Face on September 27, 2026.
Each family has its own guide: the Claude API, Mistral Vibe, DeepSeek, and the overall comparison in Which AI to Choose in 2026.
What an LLM cannot do on its own.
An LLM is powerful, but it has limits worth knowing before you hand it a process:
- It can hallucinate. It produces the most plausible answer, not necessarily the most accurate. A figure, a reference or a quote can be confidently made up.
- Its knowledge has a date. Every model has a knowledge cutoff: June 2026 for Claude Opus 5.5, February 2025 for Claude Haiku 4.5, according to Anthropic. Beyond that, it knows nothing unless you provide the information.
- It does not know your business. Your customers, prices and procedures are not in its training data.
- It does not act. On its own, it produces text. It does not update a CRM or send an email.
Each limit has its answer: connect the model to your documents (this is called RAG), give it tools to act, and have important outputs checked by a rule or a person.
How a business uses an LLM.
There are three levels of use, from simplest to most valuable:
- The individual assistant. Your teams use ChatGPT, Claude or Gemini to draft, summarize, translate. Immediate gains, but they depend on each person.
- The LLM connected to your documents. An assistant that answers from your procedures, contracts or product sheets, with sources. Answers become reliable and specific to your business.
- The LLM at the core of an agent. The model reasons, and the system around it acts: it qualifies a lead, enters an invoice, follows up with a customer. That is where time savings become significant. See What Is an AI Agent.
For the third level, the model is chosen task by task: a light, cheap model for volume, a powerful one for complex cases, a model hosted in the right region when data requires it. That is what we build in our custom AI agents.
LLM: what people ask us.
What is an LLM?
An LLM (large language model) is an artificial intelligence program trained on very large amounts of text to understand and generate language. It works by predicting, token after token, the most likely continuation of a text. ChatGPT, Claude, Gemini and Mistral all run on LLMs.
What is the difference between an LLM and ChatGPT?
ChatGPT is an application; the LLM is the engine running behind it. OpenAI builds the GPT models, and ChatGPT is the interface to use them. In the same way, the Claude app runs on Anthropic's Claude models.
What are the main LLMs in 2026?
Among the most used: OpenAI's GPT models (GPT-6 Astra in ChatGPT Plus), Anthropic's Claude (Opus 5.5, Sonnet 5, Haiku 4.5, Fable 5.1), Google's Gemini (Gemini 3.1 Pro), Mistral (Mistral Medium 3.5, Mistral Large 3) and DeepSeek (V4.1 Flash, V4 Pro).
What is an open-weight LLM?
A model whose weights are published and downloadable, so you can run it on your own servers. For example, DeepSeek publishes its V4 models under the MIT license, Mistral publishes Mistral Large 3 under Apache 2.0, and OpenAI its gpt-oss models. The main benefit for a business: keeping data in-house.
Can an LLM be wrong?
Yes. An LLM produces the most plausible answer, not necessarily the most accurate one: it can confidently invent a figure or a source, which is called a hallucination. Its knowledge also stops at a given date. That is why you connect it to your documents (RAG) and have important outputs checked.
What is the difference between an LLM and an AI agent?
The LLM reasons and produces text. An AI agent is a system built around an LLM: it is triggered by an event, has tools to act in your software, and guardrails. The LLM is the brain; the agent is the full teammate. See What Is an AI Agent.