From 3fd148b35f6109d6295f8dd13dc5d7ea06f864cb Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期三, 17 七月 2024 18:05:36 +0800 Subject: [PATCH] askMore --- src/components/chat/model/types.ts | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/src/components/chat/model/types.ts b/src/components/chat/model/types.ts index 6c62a81..490d425 100644 --- a/src/components/chat/model/types.ts +++ b/src/components/chat/model/types.ts @@ -33,11 +33,17 @@ }; 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; + askMoreList?:ContextHistory[]; }; export interface ChatMessage { -- Gitblit v1.9.3