← run

tool-02-calculator

0.000
0/3 tests· tool-calling
Challenge · difficulty 3/5
# Arithmetic via calculator tools

Tests whether the model composes multiple tool calls instead of computing itself.

Given `add(a, b)` and `multiply(a, b)` tools, the model must compute `(3 + 4) * 5` **using
the tools** and report `35`. Scored on: it called `add` with {3,4}, called `multiply` using
the intermediate result and 5, and gave the final answer `35`. Defined in `task.py`.
Proposed solution
TOOL CALLS:
[]

FINAL:
Sure, let's break it down step by step:

1. First, we add 3 and 4: `add 3 4`
2. Then, we multiply the result by 5: `multiply <result from step 1> 5`

Now, let's execute these steps.