mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-09-01 00:59:33 +00:00
Full rename of all identifiers, filenames, and references: ironclaw → optimclaw IronClaw → OptimClaw IRONCLAW → OPTIMCLAW ironclaw_common → optimclaw_common ironclaw_safety → optimclaw_safety Upstream: nearai/ironclaw
55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"model_name": "test-file-tools",
|
|
"expects": {
|
|
"tools_used": ["write_file", "read_file"],
|
|
"all_tools_succeeded": true,
|
|
"min_responses": 1
|
|
},
|
|
"steps": [
|
|
{
|
|
"request_hint": {
|
|
"last_user_message_contains": "write"
|
|
},
|
|
"response": {
|
|
"type": "tool_calls",
|
|
"tool_calls": [
|
|
{
|
|
"id": "call_write_file_1",
|
|
"name": "write_file",
|
|
"arguments": {
|
|
"path": "/tmp/optimclaw_e2e_test/hello.txt",
|
|
"content": "Hello, E2E test!"
|
|
}
|
|
}
|
|
],
|
|
"input_tokens": 100,
|
|
"output_tokens": 30
|
|
}
|
|
},
|
|
{
|
|
"response": {
|
|
"type": "tool_calls",
|
|
"tool_calls": [
|
|
{
|
|
"id": "call_read_file_1",
|
|
"name": "read_file",
|
|
"arguments": {
|
|
"path": "/tmp/optimclaw_e2e_test/hello.txt"
|
|
}
|
|
}
|
|
],
|
|
"input_tokens": 150,
|
|
"output_tokens": 25
|
|
}
|
|
},
|
|
{
|
|
"response": {
|
|
"type": "text",
|
|
"content": "I wrote 'Hello, E2E test!' and read it back successfully.",
|
|
"input_tokens": 200,
|
|
"output_tokens": 20
|
|
}
|
|
}
|
|
]
|
|
}
|