feat: 聊天界面调整

This commit is contained in:
2026-01-21 01:46:30 +08:00
parent 8137a38060
commit 9c5afcaa04
5 changed files with 73 additions and 34 deletions

View File

@@ -34,11 +34,11 @@ export class ChatMessage {
toolCall?: any,
question?: any
) {
this.messageId = messageId;
this.messageId = messageId;
this.messageRole = messageRole;
this.messageContent = messageContent;
this.finished = finished;
this.isLoading = isLoading;
this.finished = finished;
this.toolCall = toolCall;
this.question = question;
}