(output string)
| 146 | } |
| 147 | |
| 148 | func ResultError(output string) *ToolCallResult { |
| 149 | return &ToolCallResult{ |
| 150 | Output: output, |
| 151 | IsError: true, |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | func ResultSuccess(output string) *ToolCallResult { |
| 156 | return &ToolCallResult{ |
no outgoing calls