* Send a text response. * * Use for: * - Answering follow-up questions * - Providing additional context * - Giving feedback on completion * * @param text - The response text * @param images - Optional base64-encoded images
(text: string, images?: string[])
| 371 | * @param images - Optional base64-encoded images |
| 372 | */ |
| 373 | respond(text: string, images?: string[]): void { |
| 374 | this.sendResponse("messageResponse", text, images) |
| 375 | } |
| 376 | |
| 377 | /** |
| 378 | * Generic method to send any ask response. |
no test coverage detected