The other tools — tool calling.
A model is brilliant with language and hopeless at measuring a trajectory. So you give it instruments to call on.
A model can reason about words, but it cannot reliably do arithmetic, look up today's score, or measure where a ball was heading. For those it needs help — so you hand it a set of tools it is allowed to use, and let it call on them. This is tool calling (also “function calling”).
Here is the part that trips people up, and it is the same shape as the last lesson: the model does not run the tool. It requests one — it names the tool and the inputs — and then a real program on your side runs the actual tool and hands the result back. The model reads that result and carries on.
The football VAR works exactly this way. It cannot judge to the centimetre whether a ball crossed the line, so it calls for goal-line technology; it cannot eyeball a tight offside, so it calls for semi-automated offside; it cannot be certain about a handball, so it calls for multi-angle replay. The VAR asks for the instrument, the instrument does the measuring, and the VAR rules on what comes back.
So the model's real skill here is judgement: turning a vague appeal into the right tool with the right inputs — and then reading the answer correctly.
Send up an incident the VAR can't settle from words alone. Watch it call the right instrument, and rule on what the instrument reports back.
Ask, run, read.
You hand the model the tools; it hands you back a request; your code runs the tool and gives it the result. The model only ever reads text.
The model decides; the tool does.
Tools give a model powers it does not have on its own — exact measurement, live data, real actions. But it never runs them itself: it picks the right tool and inputs, your code runs the tool, and the model reads the result and continues. Its job is judgement, not execution.
Retrieval, last lesson, was really just one tool — a search. Tool calling is the general version: give the model a whole kit of instruments, and let it call whichever the moment needs.