Files
optimclaw/tests/fixtures/llm_traces/file_write_read.json
T
OutBack Dingo 6d9dbbb3b9 fork: rename IronClaw → OptimClaw
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
2026-03-29 06:27:52 +07:00

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
}
}
]
}