From c123adf7cb8caa3a92f1143755092371ef4a0658 Mon Sep 17 00:00:00 2001
From: wujingjing <gersonwu@qq.com>
Date: 星期一, 22 七月 2024 13:51:37 +0800
Subject: [PATCH] 整理 chat.vue

---
 src/components/chat/model/types.ts |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/src/components/chat/model/types.ts b/src/components/chat/model/types.ts
index 67f1e76..3a3555a 100644
--- a/src/components/chat/model/types.ts
+++ b/src/components/chat/model/types.ts
@@ -11,6 +11,7 @@
 	Text = 'text',
 	Summary = 'summary',
 	Url = 'url',
+	Map = 'map',
 }
 
 export const answerTypeMapCom = {
@@ -23,7 +24,6 @@
 export const enum RoleEnum {
 	user = 'user',
 	assistant = 'assistant',
-	system = 'system',
 }
 export const AnswerState = {
 	Null: null,
@@ -32,11 +32,19 @@
 };
 
 export type AnswerStateType = typeof AnswerState;
-
+export type ContextHistory = {
+	/** @description 鏁板瓧瀛楃涓� */
+	ratio:string;
+	history_id:string;
+	question:string;
+}
 export type ChatContent = {
 	type: AnswerType;
 	values: any;
-	error?:string;
+	msg?: string;
+	askMoreList?:ContextHistory[];
+	errCode?:string;
+	origin?:any;
 };
 
 export interface ChatMessage {
@@ -49,5 +57,4 @@
 export const roleImageMap = {
 	[RoleEnum.user]: userPic,
 	[RoleEnum.assistant]: assistantPic,
-	[RoleEnum.system]: userPic,
 };

--
Gitblit v1.9.3