From 260405b517ccdbafce41b8980554fdf974caec02 Mon Sep 17 00:00:00 2001
From: wujingjing <gersonwu@qq.com>
Date: 星期三, 18 十二月 2024 15:16:31 +0800
Subject: [PATCH] reports 取第一个

---
 src/components/chat/model/types.ts |   60 ++++++++++++++++++++++++++++++++++++++++++++++++++----------
 1 files changed, 50 insertions(+), 10 deletions(-)

diff --git a/src/components/chat/model/types.ts b/src/components/chat/model/types.ts
index 3a3555a..2c3851d 100644
--- a/src/components/chat/model/types.ts
+++ b/src/components/chat/model/types.ts
@@ -2,9 +2,10 @@
 import NormalTextCom from '../chatComponents/normalTextCom/NormalTextCom.vue';
 import knowledgeCom from '../chatComponents/knowledgeCom/KnowledgeCom.vue';
 import SummaryCom from '../chatComponents/summaryCom/SummaryCom.vue';
+import ReportCom from '../chatComponents/reportCom/ReportCom.vue';
 
-import assistantPic from '../images/assistant.jpg';
-import userPic from '../images/user.svg';
+import assistantPic from '/static/images/role/assistant-200x192.png';
+import userPic from '/static/images/role/user-200x206.png';
 export const enum AnswerType {
 	Knowledge = 'knowledge',
 	RecordSet = 'recordset',
@@ -12,6 +13,7 @@
 	Summary = 'summary',
 	Url = 'url',
 	Map = 'map',
+	Report = 'report_list',
 }
 
 export const answerTypeMapCom = {
@@ -34,17 +36,19 @@
 export type AnswerStateType = typeof AnswerState;
 export type ContextHistory = {
 	/** @description 鏁板瓧瀛楃涓� */
-	ratio:string;
-	history_id:string;
-	question:string;
-}
+	ratio: string;
+	history_id: string;
+	question: string;
+};
+
 export type ChatContent = {
 	type: AnswerType;
 	values: any;
-	msg?: string;
-	askMoreList?:ContextHistory[];
-	errCode?:string;
-	origin?:any;
+	askMoreList?: ContextHistory[];
+	errCode?: string;
+	errMsg?: string;
+	origin?: any;
+	createTime?: string;
 };
 
 export interface ChatMessage {
@@ -52,9 +56,45 @@
 	role: RoleEnum;
 	content?: ChatContent;
 	state?: null | '1' | '0';
+	sectionAId?: string;
+	createTime?: string;
+	stepList?: StepItem[];
+	stepIsShow?: boolean;
+	isStopMsg?: boolean;
+	/** @description 鏄惁琚�夋嫨鍒嗕韩 */
+	isChecked: boolean;
+	conclusion?: any[];
 }
 
 export const roleImageMap = {
 	[RoleEnum.user]: userPic,
 	[RoleEnum.assistant]: assistantPic,
 };
+
+export const enum StepEnum {
+	Loading,
+	Success,
+	Error,
+}
+export const stepEnumMap = {
+	[StepEnum.Loading]: 'process',
+	[StepEnum.Success]: 'process',
+	[StepEnum.Error]: 'process',
+};
+export const enum MultiChatType {
+	Select = 'select',
+	Summary = 'summary',
+	Result = 'result',
+}
+type SubStep = {
+	data: any;
+	type: MultiChatType;
+};
+
+export type StepItem = {
+	title: string;
+	status: StepEnum;
+	// 娑堣�楁椂闂�
+	ms?: string | number;
+	subStep?: SubStep[];
+};

--
Gitblit v1.9.3