(toolCallId, toolName string)
| 431 | } |
| 432 | |
| 433 | func (h *SSEHandlerCh) AiMsgToolInputStart(toolCallId, toolName string) error { |
| 434 | resp := map[string]interface{}{ |
| 435 | "type": AiMsgToolInputStart, |
| 436 | "toolCallId": toolCallId, |
| 437 | "toolName": toolName, |
| 438 | } |
| 439 | return h.WriteJsonData(resp) |
| 440 | } |
| 441 | |
| 442 | func (h *SSEHandlerCh) AiMsgToolInputDelta(toolCallId, inputTextDelta string) error { |
| 443 | resp := map[string]interface{}{ |
no test coverage detected