(reasoningId string)
| 423 | } |
| 424 | |
| 425 | func (h *SSEHandlerCh) AiMsgReasoningEnd(reasoningId string) error { |
| 426 | resp := map[string]interface{}{ |
| 427 | "type": AiMsgReasoningEnd, |
| 428 | "id": reasoningId, |
| 429 | } |
| 430 | return h.WriteJsonData(resp) |
| 431 | } |
| 432 | |
| 433 | func (h *SSEHandlerCh) AiMsgToolInputStart(toolCallId, toolName string) error { |
| 434 | resp := map[string]interface{}{ |
no test coverage detected