AITraining2U

Programs

Resources

Case Studies

Quick Links

Enquire Now
Domain 4 · 18%% of exam

Tool descriptions are the primary lever

When the model picks the wrong tool, the description is almost always the fix.

4 min read · Lesson 3 of 10 in this domain

When an agent picks the wrong tool, the reflex is to add error handling or a confirmation step. Both are reactive — they clean up after a decision that was already made badly. The description is what the model actually reads when deciding, so it is where the problem is caused and where it should be fixed. The most effective descriptions are prescriptive about when to call, not just what the tool does, and they say explicitly what the tool is not for when a sibling tool could be confused with it.

Key points
  • Tool and parameter descriptions are the main mechanism the model uses to decide what to call and how to format inputs. They act before generation.
  • For confusable tools (delete_file vs archive_file), expand both descriptions to state purpose, boundaries, and explicit negative constraints — what the tool is not for.
  • Be prescriptive about when to call, not just what the tool does: "Call this when the user asks about current prices or recent events."
  • For input-format problems, clear per-parameter descriptions beat complex regex. Regex validates but does not guide — the model still guesses, then gets told it guessed wrong.
  • A confirmation gate inside a destructive tool is worthwhile protection, but it does not correct the upstream selection error.
Exam trap

Solving a selection problem with error handling or a confirmation prompt. Both are reactive; the description is the cause.

Check your understanding

The agent keeps calling delete_file instead of archive_file. Best fix?

Correct answer: B — Expand both descriptions with purpose and negative constraints
Descriptions are what the model reads when selecting; a confirmation does not correct the choice.

What makes a tool description most effective?

Correct answer: B — Stating when to call it, not just what it does
Prescriptive trigger conditions measurably improve should-call rate.

Practise this domain with 18%%-weighted questions in the study app.

Open in study app

Source: Claude Docs — Tool use overview · Independent study aid, not affiliated with or endorsed by Anthropic.