PrintToolCallResponse prints a tool call response
(name, response string)
| 151 | |
| 152 | // PrintToolCallResponse prints a tool call response |
| 153 | func (p *Printer) PrintToolCallResponse(name, response string) { |
| 154 | p.Printf("\n%s response%s\n", bold(name), formatToolCallResponse(response)) |
| 155 | } |
| 156 | |
| 157 | // PromptMaxIterationsContinue prompts the user to continue after max iterations |
| 158 | func (p *Printer) PromptMaxIterationsContinue(ctx context.Context, maxIterations int) ConfirmationResult { |
no test coverage detected