Files
optimclaw/tests/fixtures/llm_traces/tools/routine_history.json

51 lines
1.2 KiB
JSON

{
"model_name": "test-routine-history",
"expects": {
"tools_used": ["routine_create", "routine_history"],
"all_tools_succeeded": true,
"min_responses": 1
},
"steps": [
{
"response": {
"type": "tool_calls",
"tool_calls": [
{
"id": "call_rc_h",
"name": "routine_create",
"arguments": {
"name": "history-test",
"trigger_type": "manual",
"prompt": "Test routine for history."
}
}
],
"input_tokens": 100,
"output_tokens": 25
}
},
{
"response": {
"type": "tool_calls",
"tool_calls": [
{
"id": "call_rh_1",
"name": "routine_history",
"arguments": { "name": "history-test" }
}
],
"input_tokens": 200,
"output_tokens": 20
}
},
{
"response": {
"type": "text",
"content": "The history-test routine was created, but it is not verified yet. Its run history is empty since it hasn't been triggered yet.",
"input_tokens": 300,
"output_tokens": 25
}
}
]
}