1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"on_exhausted": "error",
"turns": [
{
"type": "tool_calls",
"calls": [
{
"name": "bash",
"arguments": { "command": "echo hello > /tmp/x.txt" }
}
]
},
{
"type": "tool_calls",
"calls": [
{
"name": "bash",
"arguments": { "command": "sed -i s/hello/world/ /tmp/x.txt" }
}
]
},
{
"type": "mixed",
"text": "All done — file now contains 'world'.",
"calls": [
{
"name": "bash",
"arguments": { "command": "cat /tmp/x.txt" },
"id": "call_verify"
}
]
},
{
"type": "assistant",
"text": "done"
}
]
}