A large language model (LLM) is an AI system trained to predict the next word in a sequence, over so much text that it learns to read, write, summarise, translate, and reason about language. It is the technology behind ChatGPT, Claude, and Gemini. You give it text (a "prompt") and it generates text back — grounded in patterns it learned during training, not in a live understanding of your business. Knowing what it is, and what it fundamentally cannot do, is the difference between deploying it well and being burned by it.
Every enterprise is now being asked to "adopt AI," and in almost every case the AI in question is a large language model. Yet most of the people making decisions about LLMs — buying them, governing them, rolling them out to teams — have never had a plain, honest explanation of what one actually is. The result is predictable: unrealistic expectations, avoidable failures, and a lot of money spent on tools nobody quite understands.
This guide fixes that. It explains what an LLM is, how it works, what "large" really means, what these systems can and cannot do, how the major models differ, how enterprises actually use them, and what it takes to use them safely. It is written for decision-makers and practitioners, not engineers — no maths, no hype.
At its core, an LLM does one deceptively simple thing: given some text, it predicts what word (or fragment of a word) should come next. Feed it "The capital of France is" and it predicts "Paris." Feed it the first half of an email and it predicts a plausible second half. That is the entire mechanism — next-word prediction, repeated one word at a time until the response is complete.
What makes this powerful rather than trivial is scale. An LLM has been trained on an enormous quantity of text — books, articles, code, conversations, reference material — and in learning to predict the next word across all of it, it absorbs grammar, facts, reasoning patterns, writing styles, and the structure of arguments. It is not looking anything up. It has compressed the statistical patterns of human language into billions of internal settings, and it reconstructs answers from those patterns on the fly.
The useful mental model: an LLM is an extraordinarily well-read pattern-completion engine. It has read more than any human could in a thousand lifetimes, and it uses that to continue whatever text you give it in the most plausible way. It is not a database, a search engine, or a mind. Holding that distinction clearly is the single most important thing on this page.
Three ideas explain almost everything about how a modern LLM behaves.
An LLM doesn't see letters or whole words — it sees tokens, chunks of text roughly ¾ of a word on average. "Understanding" might be one token; an unusual name might be three. Tokens matter because they are the unit of both pricing and memory: you pay per token, and a model can only consider so many tokens at once (its "context window"). When someone says a model has a 200,000-token context window, they mean it can hold roughly 150,000 words of your prompt and its answer in working memory at one time.
Training happens in two broad stages. In pretraining, the model reads a vast corpus and learns, purely by predicting the next token billions of times, the patterns of language and a great deal of world knowledge. This is where the raw capability comes from — and it is frozen at a point in time, which is why every model has a knowledge cutoff and cannot know anything that happened after it.
Pretraining alone produces a model that completes text but doesn't reliably follow instructions or behave safely. So a second stage — fine-tuning, including a technique called reinforcement learning from human feedback (RLHF) — teaches it to be helpful, follow instructions, and avoid harmful output, by having humans rate its responses and steering it toward the good ones. Pretraining gives the model its knowledge; fine-tuning gives it its manners.
When you send a prompt, the model predicts the most likely next token, appends it, and repeats — each new token informed by everything so far. A setting called temperature controls how much randomness is allowed: low temperature makes it pick the safest, most predictable next token (good for factual, consistent output); higher temperature lets it choose less likely tokens (good for creative variety). This is why the same prompt can produce slightly different answers each time.
The underlying architecture that made all this work at scale is called a transformer, and its key trick — "attention" — lets the model weigh how much every word in the input relates to every other word, so it can track meaning across long passages. You don't need the internals; you need to know that this architecture is what unlocked the jump from clumsy chatbots to systems that write coherent essays.
Not sure which path fits? Get a free 1:1 consultation with our team.
The "large" in large language model refers mainly to two things: the number of parameters and the volume of training data.
Parameters are the internal settings the model tunes during training — the dials that encode everything it knows. Early useful models had hundreds of millions; modern frontier models have hundreds of billions to trillions. More parameters generally mean more capacity to learn nuance, though the relationship isn't linear, and smart training now often beats brute size. The training data, meanwhile, runs to trillions of tokens — a meaningful slice of the public internet plus licensed and curated material.
Two practical consequences follow. First, this scale is why frontier LLMs are expensive to build and run, and why most enterprises rent them via an API rather than train their own. Second, "bigger" is not automatically "better for you": a smaller, faster model with good prompting and the right context often beats a giant one for a specific business task — and costs a fraction as much.
Used within their strengths, LLMs are transformative. They excel at working with language in all its forms:
The common thread: LLMs shine when the task is about manipulating language and reasoning over information you supply, and they get dramatically more reliable when you give them the right context to work from rather than relying on their frozen training memory.
Every serious LLM failure in the enterprise traces back to expecting a capability the technology doesn't have. Four limits matter most.
Because an LLM generates the most plausible next token, not the most true one, it will confidently produce fluent, well-formatted, completely fabricated answers when it doesn't know something — inventing a statistic, a citation, or a policy that never existed. It has no built-in sense of "I don't know." This is the defining risk of the technology, and it is why grounding techniques and human review are non-negotiable for anything that matters.
A model's knowledge is frozen at its training date. Out of the box it knows nothing about your company, your current prices, last week's news, or this morning's ticket. It cannot browse or query your systems unless you explicitly connect it to them.
An LLM has no persistent memory between conversations and no genuine understanding of meaning the way a person does — it models statistical patterns of language extraordinarily well, which often looks like understanding but breaks in revealing ways (confidently wrong arithmetic, logic that falls apart under a twist). Treat its output as a very capable draft, not an authority.
Trained on human text, LLMs absorb human biases and can reproduce them. In hiring, lending, or customer-facing use, that is a governance and compliance issue, not just a quality one.
An LLM is a brilliant improviser with no obligation to the truth. Everything you build on top of one is really a system for constraining that improvisation toward accuracy.
A handful of model families dominate enterprise use. They are more alike than different, but the distinctions matter for procurement.
| Model family | Maker | Access | Typically chosen for |
|---|---|---|---|
| Claude | Anthropic | API / apps | Long documents, careful reasoning, safety-sensitive work |
| GPT (ChatGPT) | OpenAI | API / apps | Broad general use, largest ecosystem and tooling |
| Gemini | API / apps | Tight integration with Google Workspace and Cloud | |
| Llama | Meta | Open weights | Self-hosting, data residency, full control |
The key split is proprietary vs open. Proprietary models (Claude, GPT, Gemini) are accessed as a service — you send text to the provider and get text back, with no infrastructure to run but your data leaving your walls (under the provider's terms). Open-weight models (Llama and others) can be downloaded and run on your own infrastructure — more control and data residency, but you own the operational burden. For a fuller comparison of the leading assistants, see our guide on Claude vs ChatGPT vs Gemini; for how these relate to the broader field, see Generative AI vs traditional AI.
Beyond the chatbot, LLMs show up across the business wherever language is the work:
In almost every successful case, the LLM is not used raw. It is wrapped in a system that feeds it the right context and checks its output — which brings us to the four ways you actually put an LLM to work.
There are four levers for turning a general model into something useful for your business, in rough order of effort.
Most enterprise applications combine these: a well-prompted model, grounded with RAG, sometimes fine-tuned for tone, occasionally operating as an agent. Understanding which lever solves which problem is the practical core of building with LLMs — and the backbone of our Generative AI with Deep Learning training programme.
Proprietary LLMs are priced per token, split into input tokens (your prompt) and output tokens (the model's answer), with output usually costing several times more than input. Because a token is roughly ¾ of a word, you can estimate costs from the length of your prompts and responses. Two things drive the bill more than the sticker price: how much context you send on every request (long documents add up fast) and which model tier you use (frontier models cost many times more than smaller ones). For most enterprise workloads, choosing a right-sized model and trimming unnecessary context matters far more than the headline per-token rate. Open-weight models shift the cost from per-token fees to the infrastructure you run them on.
Putting LLMs into an organisation raises real governance questions that L&D, legal, and IT increasingly share. The essentials: hallucination means any output that carries weight needs verification and, ideally, cited sources; data privacy means knowing what leaves your walls when you send a prompt to a provider, and configuring retention and residency accordingly; bias means testing outputs in sensitive contexts like hiring or lending; and access control means an LLM connected to your data must respect who is allowed to see what. None of this is a reason to avoid LLMs — it is the standard cost of using them responsibly. For the fuller picture, see our guide to AI governance in the enterprise.
Three shifts are shaping what's next. Models are becoming multimodal — handling images, audio, and video alongside text — so "language model" is already an understatement. They are gaining longer context and better memory, holding whole codebases or document sets at once. And they are increasingly agentic, moving from answering questions to taking actions across tools and systems. For enterprises, the practical implication is steady: the core skill isn't chasing each new model, it's building the capability to use whatever model is best — grounding it in your data, governing it well, and pointing it at the right problems.
An LLM is a general-purpose tool, and like any powerful tool its value depends entirely on the skill of the people wielding it. The teams that get real results treat LLMs as a capability to build deliberately — understanding what the technology is, where it breaks, and which lever (prompting, RAG, fine-tuning, agents) fits which problem — not as a magic box to switch on.
That is exactly what our hands-on, instructor-led programmes are built for. The Generative AI with Deep Learning training programme takes teams from "what is an LLM" through to building and deploying real applications, and sits within our broader enterprise AI training solutions. For the deeper foundations of how these models are built, the Machine Learning training programme covers the ground beneath them.
Understanding what an LLM is explains the concept. Running one reliably in production is an engineering discipline — MLOps — with an arc of its own, from tracking experiments to orchestrating and monitoring live services.
MLflow experiment tracking · LangChain integration · FastAPI model serving · Docker containerization · Kubernetes orchestration · drift detection & monitoring · CI/CD for machine learning.
Want a structured, instructor-led path through all of this — with hands-on projects and real feedback? → MLOps & LLM Deployment
No — an LLM is one type of AI. Artificial intelligence is the broad field; large language models are a specific, recent, and very capable branch focused on language. Most of what people call "AI" in 2026 is in fact an LLM, which is why the terms get blurred.
ChatGPT is an application built on top of an LLM (OpenAI's GPT models). The LLM is the underlying engine; ChatGPT is the chat product wrapped around it. Claude and Gemini follow the same pattern — an app built over an underlying model.
Not in the human sense. An LLM models the statistical patterns of language extraordinarily well, which often looks like understanding — but it has no beliefs, intentions, or grasp of meaning, and it breaks in revealing ways (confident wrong arithmetic, logic that fails under a twist). Treat its output as a capable draft, not an authority.
Because they generate the most plausible next token, not the most true one. When a model doesn't know something, it still produces a fluent, confident answer — a "hallucination." It has no built-in sense of uncertainty. Grounding it in real data (RAG) and showing sources are the standard defences.
Not on its own — a model knows only its frozen training data. To answer questions about your business it must be explicitly connected to your systems, usually through retrieval-augmented generation (RAG), which fetches relevant company information at query time and feeds it to the model.
There is no single best — it depends on the workload. Claude, GPT, and Gemini lead for proprietary use, differing in strengths, ecosystem, and integrations; open-weight models like Llama suit self-hosting and data residency. The right choice is workload-specific, and many enterprises use more than one.
To use one through a chat interface, no. To deploy one reliably in a business — grounding it, governing it, integrating it — yes, it takes skills across prompting, retrieval, evaluation, and deployment. That capability gap is exactly what structured training addresses.
Browse our upcoming batches — live, instructor-led, delivered on Orbit.