What Are Large Language Models?

Author: codeplu.com
Last Updated: 29 Jul 2026
Est. Duration: 10 min
Skill Level: Beginner

Root Concept

A large language model is not a search engine or a database — it is a machine that learned the patterns of language from an enormous amount of text, and writes fresh text from those patterns.

CodePLU Goal

Upgrading Human Mental Models

Learn how to think in Workflows

Concept Playground
CodePLU logo

Concept Development By codeplu.com

One typed request, three different things done with it

What Is a Large Language Model, in Plain Words?

Picture someone who has read an entire library — millions of books, articles, conversations, manuals. Now take all the books away and ask them a question. They will answer fluently, in whatever style you like, on almost any subject. But they are answering from what stuck in their memory, not by looking anything up. Some of it will be sharp and precise. Some of it will be confidently half-remembered.

That is a large language model. The 'language model' part means it models how language fits together, so given some text it can continue it convincingly. The 'large' part refers to sheer scale: trained on an enormous amount of text, with billions of internal settings tuned during that training.

The single most useful thing to understand is what an LLM is not. It is not a search engine looking through pages, and not a database fetching a stored record. It writes fresh text every time, from patterns rather than from stored answers — which explains both its remarkable flexibility and its most annoying flaws. In the playground above you will build all three paths down from the same typed text, and follow the language model one step further than the others — to where it can be confidently wrong.

How Should You Think About an LLM?

1

What does the 'language model' part actually mean?

A model, in this sense, is a working representation of how something behaves — and here the something is language. The model has absorbed how words follow words: that 'thank you very' is usually followed by 'much', that a question about a recipe expects ingredients and steps, that a complaint letter sounds different from a birthday card. Give it any piece of text and it continues that text in a way that fits. That is its one and only job. Everything an LLM appears to do — answering, translating, summarising, writing code — is that same continuation skill wearing different clothes, because all of those tasks can be expressed as 'here is some text, what should come next?'

2

What makes it 'large'?

Two things, both enormous. First the reading material: modern models are trained on quantities of text no person could read in a thousand lifetimes — a large slice of the public internet, books, and reference works. Second the internal settings, those adjustable dials tuned during training, which now number in the billions. Scale is not just bragging rights, and this is the genuinely surprising part of the story: as these models grew, they started handling tasks nobody built them for — translating, writing working code, explaining jokes — simply because those patterns exist in language too. Nobody added a translation feature. It came along with the reading.

3

Why is an LLM not a search engine?

A search engine keeps an index of pages and hands you the ones matching your words: it finds. A database stores exact records and returns them unchanged: it retrieves. An LLM does neither — it generates, composing text that never existed before, guided by patterns rather than by any stored copy. This is why an LLM has no links to give you by default, why two people asking the same question get differently worded answers, and why it cannot tell you today's weather from its own knowledge. Many beginners assume the AI is quietly searching behind the scenes. It is not, unless the product has deliberately bolted a search tool onto it.

4

Why does it sometimes make things up?

Once you accept there is no lookup, invented answers stop being mysterious. The model's job is to produce text that fits — and text that fits can be entirely false. Asked for a book about an obscure topic, it may produce a plausible title by a plausible author that does not exist, because that shape of answer is exactly what should follow such a question. The name for this is hallucination, and the crucial detail is that it feels identical to a correct answer from the inside: same fluency, same confidence, no flicker of doubt. So the practical habit is simple. For anything that must be true — names, numbers, dates, quotes, laws, medical or legal specifics — verify elsewhere.

5

Why does it not know what happened last week?

Training happens once, over a fixed pile of text collected up to a certain date, and afterwards the model's internal settings are frozen. It does not quietly keep reading the news. That date is the training cutoff, and everything after it is simply absent — a model can be unaware of an election, a product, or a death that everyone else has known about for months. This also means it does not remember you between conversations unless the product deliberately saves notes. When an AI tool does answer with current information, something extra is happening: it has been given search or a document to read, and that fetched text is placed in front of it as part of the conversation.

Real World Example

One shopping problem, two tools, and a clear line between them.

Search Engine or LLM — Which Should You Ask?

You need a birthday present for your aunt, who is turning seventy and loves gardening. Watch what each tool gives back, and where each one fails.

1

The search engine hands you the raw material

Typing 'gifts for gardeners' returns pages of listicles, shop pages, and ads. Everything is real and current — someone genuinely wrote it and the prices genuinely exist — but you now have twenty tabs and half an hour of reading before you have decided anything.

2

The LLM hands you a shaped answer

Ask an LLM instead, mentioning she is seventy, has arthritis in her hands, and already owns every tool going. It returns six tailored ideas — lightweight ergonomic tools, a kneeling stool, seeds for a scented windowsill — in the tone you asked for, no tabs required.

3

Where the LLM genuinely shines

It weighed the details you gave it and shaped language around them. Ask it to turn the best idea into a warm gift-card message and it does that too. This is its home ground: understanding a messy request and producing well-formed text for it.

4

Where it quietly fails

Now ask 'how much does that kneeling stool cost at my local garden centre today?' It has no lookup and no access to the shop, so it may still answer — with a confident, invented-looking figure. Nothing warns you, because a made-up price reads exactly like a real one.

5

The line that keeps you safe

Use search for facts that live in the world and change: prices, stock, opening times, news. Use an LLM for shaping language: brainstorming, drafting, explaining, summarising, rewriting. And when you need both, use a tool that combines them — one that searches first and hands the results to the model to write up.

FAQs

Final Words

A large language model is a machine that learned how language works by reading an unimaginable amount of it, and now writes fresh text from those patterns. In the playground you drew the distinction that matters most: search engines find, databases retrieve, language models generate. Every strength and every irritation follows from that third verb.

So expect fluency everywhere and truth only sometimes. Use an LLM for shaping language, verify anything that must be factual, and remember that its knowledge stops at a fixed date unless the tool fetches material for it. Next comes the machinery behind the curtain — what is actually inside the model that makes such convincing continuation possible.