(chatRecordId: string, content: string, reasoning_content?: string)
| 473 | } |
| 474 | |
| 475 | static append(chatRecordId: string, content: string, reasoning_content?: string) { |
| 476 | const chatRecord = this.chatMessageContainer[chatRecordId] |
| 477 | if (chatRecord) { |
| 478 | chatRecord.append(content, reasoning_content) |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | static updateStatus(chatRecordId: string, code: number) { |
| 483 | const chatRecord = this.chatMessageContainer[chatRecordId] |
no outgoing calls
no test coverage detected