What Is a Large Language Model (LLM)?
A large language model (LLM) is an artificial intelligence system trained on vast amounts of text to predict, understand, and generate human language. It is the core technology behind assistants like ChatGPT, Claude, Microsoft Copilot, and Google Gemini: you give it text (a prompt), and it generates the most plausible continuation, an answer, a draft, a summary, a translation, or working code.
“Large” refers to both the training data (a substantial portion of the public internet, books, and code) and the model’s size (billions of internal parameters tuned during training). The result is a system with broad general knowledge and strong language skills, but no live awareness of your company, your data, or anything after its training cutoff, unless that context is provided to it.
How it actually works, in plain terms
Tokens. An LLM doesn’t process whole words. Text is broken into tokens, chunks of a few characters; a common word may be one token, a rare word several. Everything the model does, it does in tokens, which is also how usage gets billed on paid APIs.
Prediction. At its core the model does one thing: given everything so far, predict a plausible next token. Then it appends that token and predicts the next, thousands of times per response. A paragraph of advice, a poem, and a block of Python are all produced by this same loop. There is no separate “reasoning module” or fact database behind it; the remarkable capabilities emerge from prediction learned at enormous scale.
Training. Models are built in stages. First, pre-training: the model reads massive amounts of text and learns to predict the next token, absorbing grammar, facts, styles, and structures as a side effect. Then instruction tuning and feedback training turn that raw text-predictor into an assistant that follows directions, refuses harmful requests, and answers in a helpful register. After training, the weights are frozen. The model does not keep learning from your conversations.
The context window. Each request, the model sees only what fits in its context window, the working memory holding your prompt, any documents you attach, and the conversation so far. Anything outside it does not exist for the model. This is why long chats “forget” early details and why pasting the relevant source material into the prompt is often the single most effective way to get accurate output.
What an LLM can and cannot do
Genuinely strong: drafting and rewriting in a specified tone, summarizing long material, translation, explaining and generating code, extracting structure from messy text, and answering questions about text you provide. On language transformation tasks, taking text in and producing different text out, it is reliably excellent.
The hard limits matter just as much:
- It cannot verify facts. Output is plausible, not checked, which is why a confident hallucination looks identical to a right answer.
- It knows nothing after its training cutoff and nothing about your internal systems, unless a product adds retrieval, search, or function calling on top.
- It has no memory between sessions. “Memory” features in chat products are the product re-inserting saved notes into the context window, not the model itself remembering.
- Arithmetic and precise logic are weak spots. It predicts what a calculation’s answer looks like rather than computing it, so serious products route math to actual tools.
- It is not deterministic. The same prompt can produce different answers on different runs, which is a feature for brainstorming and a hazard for anything needing repeatability.
Why it matters at work
Most knowledge work is language work: emails, reports, proposals, briefs, summaries, analyses. An LLM compresses the first-draft stage of all of it from hours to seconds, and it can read and summarize faster than any human. That’s why LLM-based assistants are the entry point for nearly every corporate AI rollout.
The key operating fact: an LLM generates plausible text, not verified text. Every serious workplace deployment pairs LLM speed with human review, and the practical skill gap between users is mostly prompt engineering: knowing what context to supply and how to specify the output you want.
A work example
A marketing manager pastes a messy product-launch outline into an LLM assistant and asks for a customer announcement email in the company’s tone, under 150 words. The model returns a clean draft in ten seconds. The manager fixes one exaggerated claim, adjusts the CTA, and sends. Total time: five minutes instead of forty-five, with the human still owning the facts.
Common misconceptions
- “It looks up answers in a database.” Nothing is looked up. Every response is generated fresh, token by token, from patterns in frozen weights. That’s why it can’t tell you where it “read” something.
- “It learns from our chats.” The model’s weights don’t change when you use it. (Whether the vendor stores your prompts and later trains on them is a separate data-policy question worth checking in any workplace deployment.)
- “The chatbot is the model.” The LLM is the engine. ChatGPT, Copilot, and similar products wrap it with an interface, a system prompt, safety layers, and often retrieval and tools. Two products on the same model can behave very differently.
- “Bigger is always better.” Larger models are generally more capable, but smaller ones are faster and cheaper, and for narrow high-volume tasks a small or fine-tuned model is often the right business choice.
Related terms
- Token, the unit an LLM reads, writes, and bills in
- Context window, the model’s working memory per request
- Hallucination, when an LLM confidently generates false information
- Prompt engineering, the craft of instructing an LLM to get reliable output
FAQ
Do large language models understand what they say? They model statistical patterns in language deeply enough to be remarkably useful, but they do not verify facts or hold beliefs. Practically, that means fluent output that still needs review for accuracy.
What is the difference between an LLM and a chatbot? The LLM is the underlying model; a chatbot is a product built around one, adding an interface, standing instructions, safety layers, and often tools and retrieval on top.
Does an LLM remember previous conversations? Not on its own. Each request, it sees only what is in the context window. Chat products that appear to remember you are saving notes and re-supplying them to the model behind the scenes.