Large language model LLM
A model trained on large amounts of text to predict the next token, which in practice lets it write, summarise, translate and reason over text.
A large language model is trained to continue text. Everything else it appears to do - answering questions, writing code, following instructions - is that same continuation, shaped by training on examples of those tasks.
That framing explains most of the behaviour you will run into. The model has no separate store of facts to check against, so a plausible continuation and a true one are equally easy for it to produce. It has no memory between calls beyond what you put in the context window. And it responds to the shape of your input, which is why the same question phrased two ways can get two different answers.
What you can rely on is that the model is very good at pattern completion when the pattern is clear. Give it a worked example of the output you want and it will match the structure closely. That is the single highest-value technique in prompting.
Tagged
Where this comes up
Prompts, configs and tutorials in the library that touch this term.
- PromptUniversal
Explain this code to a new maintainer
Explains what a file does, why it is shaped that way, and where the traps are - aimed at someone about to change it.
- GuideUniversal
Giving a model a role and constraints
How naming the audience, the format and the exclusions turns unpredictable answers into repeatable ones.
Teacher who checks where you are
Explains at your level rather than the manual's, by asking one question first and building from what you already said you know.
Tested on Gemini Pro · May 2026
- GuideUniversal
What a prompt actually is
The three parts every working prompt has, why their order changes the answer, and how to tell a vague prompt from a specific one.
- Local setupLlama
Running your first local model
Ollama on a normal laptop, from install to a model answering in about ten minutes, plus how to work out which size actually fits before you download…
Tested on Llama 3.2 8B · May 2026