{ "model_name": "test-job-create-status", "expects": { "tools_used": ["create_job", "job_status"], "all_tools_succeeded": true, "min_responses": 1 }, "steps": [ { "request_hint": { "last_user_message_contains": "job" }, "response": { "type": "tool_calls", "tool_calls": [ { "id": "call_cj_1", "name": "create_job", "arguments": { "title": "Test analysis job", "description": "Analyze the test data and summarize findings." } } ], "input_tokens": 100, "output_tokens": 30 } }, { "response": { "type": "tool_calls", "tool_calls": [ { "id": "call_js_1", "name": "job_status", "arguments": { "job_id": "{{call_cj_1.job_id}}" } } ], "input_tokens": 200, "output_tokens": 20 } }, { "response": { "type": "text", "content": "Created a new job titled 'Test analysis job'. Its current status shows it's been registered in the system.", "input_tokens": 300, "output_tokens": 25 } } ] }