Agent Reasoning

Decide what to do next: pick the right tool, plan multi-step actions, recover when something goes wrong. The hardest category — open-ended decisions, no single correct answer.

100
Duration
5s
Input Tokens
3433
Output Tokens
111
Cost
$0.01
Context
Input
You need to list all open orders for a specific customer whose ID is `cust_42`. Which tool/method do you choose and what parameter object do you send?
Expected output
Use the **database** tool with parameters {"action": "list_orders", "customer_id": "cust_42"}.
Model output
Reasoning: To list all open orders for customer cust_42, the appropriate capability is in the order-management database tool. The relevant method is `list_orders`, which requires the parameters `action` and `customer_id` per the provided schema. No other tools are needed to retrieve the order list.

Response: Tool/method: database.list_orders
Parameter object to send:
{
  "action": "list_orders",
  "customer_id": "cust_42"
}