(reasoningId string)
| 406 | } |
| 407 | |
| 408 | func (h *SSEHandlerCh) AiMsgReasoningStart(reasoningId string) error { |
| 409 | resp := map[string]interface{}{ |
| 410 | "type": AiMsgReasoningStart, |
| 411 | "id": reasoningId, |
| 412 | } |
| 413 | return h.WriteJsonData(resp) |
| 414 | } |
| 415 | |
| 416 | func (h *SSEHandlerCh) AiMsgReasoningDelta(reasoningId string, reasoning string) error { |
| 417 | resp := map[string]interface{}{ |
no test coverage detected