(toolCallId, toolName string, input json.RawMessage)
| 449 | } |
| 450 | |
| 451 | func (h *SSEHandlerCh) AiMsgToolInputAvailable(toolCallId, toolName string, input json.RawMessage) error { |
| 452 | resp := map[string]interface{}{ |
| 453 | "type": AiMsgToolInputAvailable, |
| 454 | "toolCallId": toolCallId, |
| 455 | "toolName": toolName, |
| 456 | "input": json.RawMessage(input), |
| 457 | } |
| 458 | return h.WriteJsonData(resp) |
| 459 | } |
| 460 | |
| 461 | func (h *SSEHandlerCh) AiMsgStartStep() error { |
| 462 | resp := map[string]interface{}{ |
no test coverage detected