(id string)
| 21 | } |
| 22 | |
| 23 | func toolCall(id string) (tools.ToolCall, tools.Tool) { |
| 24 | call := tools.ToolCall{ |
| 25 | ID: id, |
| 26 | Function: tools.FunctionCall{Name: "shell", Arguments: "{}"}, |
| 27 | } |
| 28 | return call, tools.Tool{Name: "shell"} |
| 29 | } |
| 30 | |
| 31 | func TestAppendAndRender(t *testing.T) { |
| 32 | t.Parallel() |
no outgoing calls
no test coverage detected