What is a large language model? A plain-English explainer
ChatGPT, Gemini and Claude are all built on the same idea. Here is what a large language model actually does — and what it doesn't.
A large language model (LLM) is a computer program trained to predict the next piece of text. That sounds modest, but when a model has learned from a huge amount of writing, "predict what comes next" turns into something that can answer questions, summarise documents, translate and write code.
How it learns
During training, the model reads enormous amounts of text broken into small chunks called tokens — roughly word fragments. Over and over, it guesses the next token and adjusts billions of internal numbers (its parameters) whenever the guess is wrong. Nobody writes rules like "a question should be followed by an answer"; the patterns emerge from the data.
After this first stage, most assistants go through further training with human feedback so they follow instructions, decline harmful requests and answer in a helpful tone.
What it is good at
- Drafting and rewriting text in a particular style
- Summarising long documents
- Explaining concepts at different levels of detail
- Writing and reviewing code
- Translating between languages, including Bangla
Where it goes wrong
An LLM does not look facts up by default — it generates text that sounds right. That is why models sometimes state wrong things confidently, a problem usually called hallucination. Many assistants now connect to search or to your documents to reduce this, but it is still wise to check important facts, numbers and quotes.
Models also have a knowledge cutoff: they only know about the world up to the point their training data was collected, unless a tool feeds them newer information.
The context window
The amount of text a model can consider at once is its context window. A bigger window lets it read a whole report or a long conversation, but everything outside the window is invisible to it.
The bottom line
Think of an LLM as a very well-read assistant that writes quickly and fluently but can misremember. Used for drafting, explaining and brainstorming — with a human checking the result — it is one of the most useful tools to arrive on our devices in years.