()
| 23 | type echoTool struct{} |
| 24 | |
| 25 | func (echoTool) Definition() api.ToolDef { |
| 26 | return api.ToolDef{Name: "echo", Description: "echoes its input"} |
| 27 | } |
| 28 | |
| 29 | func (echoTool) Execute(_ context.Context, in string) (string, bool) { return in, false } |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected