Skip to content

GlossaryPaths

I build

From LLM to agent in 20 terms

The climb through the first three floors, in the order in which you meet them while building. You start from what a model can do, install around it what it lacks, then put it in a loop. The end of the path is about what decides whether the system can go to production.

Engineers, architects, technical product people · 20 terms · 45 minutes · final quiz

The sequence

0 / 20 seen
  1. Large language modelFloor 1 · The Modela solid block on its own: the prediction machineThe starting point: a function that, from a text, produces the most probable continuation. No state, no memory, no side effects.
  2. TokenFloor 1 · The Modela solid block on its own: the prediction machineThe real unit of processing and of billing. Everything you design is measured in tokens before it is measured in euros.
  3. Context windowFloor 1 · The Modela solid block on its own: the prediction machineThe hard constraint of floor 1. It bounds what the model can see in one call, answer included, and it is re-read in full at every turn.
  4. HallucinationFloor 1 · The Modela solid block on its own: the prediction machineThe direct consequence of predicting what is plausible. You do not remove it: you set bounds around it, by what you give it to read and by what you check.
  5. Fine-tuningFloor 1 · The Modela solid block on its own: the prediction machineThe only lever that really touches the model. To be kept for behaviour, never for knowledge that changes.
  6. HarnessFloor 2 · The Harnessthe block and its bolted-on plates: what gets added to itThe move up to floor 2: everything built around the model. It is the bulk of your code, and the bulk of your incidents.
  7. System promptFloor 2 · The Harnessthe block and its bolted-on plates: what gets added to itThe permanent instructions, sent again with every request. They take up context, they cost on every call, and they are not secret.
  8. ContextFloor 2 · The Harnessthe block and its bolted-on plates: what gets added to itWhat the harness assembles before every call. The quality of a system owes more to that assembly than to the choice of model.
  9. RAGFloor 2 · The Harnessthe block and its bolted-on plates: what gets added to itSelecting the right passages rather than sending everything. It is an answer to the window, to cost and to traceability, in that order.
  10. Vector databaseFloor 2 · The Harnessthe block and its bolted-on plates: what gets added to itThe means of retrieving by similarity of meaning. It serves RAG, it does not constitute it: the quality comes from the chunking and the ranking.
  11. ToolFloor 2 · The Harnessthe block and its bolted-on plates: what gets added to itWhat the system is allowed to do outside of text. Every tool added is a capability, and a surface of risk.
  12. Tool callingFloor 2 · The Harnessthe block and its bolted-on plates: what gets added to itThe exact mechanism: the model asks, the harness executes. The model never touches anything itself, and that boundary is your point of control.
  13. Structured outputFloor 2 · The Harnessthe block and its bolted-on plates: what gets added to itConstraining the shape of the answer to make it usable by code. Constraining the shape guarantees nothing about the substance.
  14. GuardrailsFloor 2 · The Harnessthe block and its bolted-on plates: what gets added to itWhat limits the damage, upstream and downstream. To be designed at the same time as the capability, never after the incident.
  15. AgentFloor 3 · The Agentthe block caught in a loop: it starts again until it gets thereThe move up to floor 3: the model chooses the next step. You lose predictability and gain adaptation.
  16. Agentic loopFloor 3 · The Agentthe block caught in a loop: it starts again until it gets thereThe mechanism: observe, decide, act, take note, start again. Since the context is never reset, the cost grows faster than the number of turns.
  17. WorkflowFloor 3 · The Agentthe block caught in a loop: it starts again until it gets thereThe alternative that gets dismissed too quickly. When the steps are known, a written sequence remains safer, cheaper and auditable.
  18. AutonomyFloor 3 · The Agentthe block caught in a loop: it starts again until it gets thereA dial you set risk by risk, never a switch. The useful question is: what can it do without validation?
  19. EvalsFloor 3 · The Agentthe block caught in a loop: it starts again until it gets thereWhat replaces intuition once the system stops being deterministic. Without a set of evals, an improvement cannot be told apart from a regression.
  20. ObservabilityFloor 3 · The Agentthe block caught in a loop: it starts again until it gets thereWhat makes it possible to understand, after the fact, why it did that. On a system that chooses its own steps, it is a design requirement.

Your progress stays in this browser. No account, no data sent.

What to remember

The summary

The bulk of your work is on floor 2

The model is a component you almost never modify. What you write, maintain and debug is the assembly of the context, the exposure of the tools, the constraint on outputs and the guardrails. A project that thinks of itself as a model project has the wrong subject.

The context is your main lever, and your main cost

It is re-read in full at every call: its size is paid for as many times as there are turns. That is why selecting beats stacking, why a long conversation becomes expensive, and why an agent that chains ten steps does not cost ten calls, but more.

Only go to an agent if a workflow will not do

An agent is justified when the steps are not known in advance. Everywhere else, a written sequence is safer, cheaper, replayable and auditable. The choice is made use case by use case, and it is perfectly legitimate for a workflow to contain an agentic step.

Without evals or traces, you are steering nothing

A system that is not deterministic cannot be validated by eye on three examples. You need a measurable set of cases to tell an improvement from a regression, and usable traces to reconstruct a sequence after the fact. Both pieces of work start before going to production, not after the first incident.

The final quiz

3 questions · click your answer

Level 2 · Distinguish

An internal assistant answers well on recent documents and badly on older ones. The corpus is complete and up to date. What do you look at first?

Level 2 · Distinguish

You expose a tool that sends emails to an agentic system. Where do you place the control?

Level 1 · Recognise

Why can the cost of an agent not be deduced from the cost of one call multiplied by the number of steps?

v2026-08 · pathCite this path
Report

What goes with your message

Path · From LLM to agent in 20 terms
v2026-08 · /en/paths/from-llm-to-agent

What is this about
0 / 600

It is used to reply to you, and for nothing else. What is recorded