(textId string)
| 391 | } |
| 392 | |
| 393 | func (h *SSEHandlerCh) AiMsgTextEnd(textId string) error { |
| 394 | resp := map[string]interface{}{ |
| 395 | "type": AiMsgTextEnd, |
| 396 | "id": textId, |
| 397 | } |
| 398 | return h.WriteJsonData(resp) |
| 399 | } |
| 400 | |
| 401 | func (h *SSEHandlerCh) AiMsgFinish(finishReason string, usage interface{}) error { |
| 402 | resp := map[string]interface{}{ |
no test coverage detected