Agents

AI agent reasoning and tool selection tests planning, tool choice, and self-diagnosis capabilities. These skills are crucial for autonomous ticket triage systems and complex agent workflows where models must decide which tools to use, plan multi-step processes, and diagnose when things go wrong. This represents some of the most challenging tasks as they require open-ended reasoning and decision-making.

100
Duration
19s
Input Tokens
3388
Output Tokens
1020
Cost
$0.00
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 the customer with ID 'cust_42', I will utilize the 'database' tool's 'list_orders' method. This method is appropriate as it allows retrieving all orders associated with a specific customer ID.

Response: I will use the 'database' tool with the 'list_orders' method, sending the following parameter object: {"action": "list_orders", "customer_id": "cust_42"}.