From b8dc9eeb53ce361f3142ea8de2c46244ecd9d5d6 Mon Sep 17 00:00:00 2001
From: wujingjing <gersonwu@qq.com>
Date: 星期二, 16 七月 2024 16:16:51 +0800
Subject: [PATCH] map 类型

---
 src/components/chat/model/types.ts |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/components/chat/model/types.ts b/src/components/chat/model/types.ts
index 67f1e76..6c62a81 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 = {
@@ -36,7 +37,7 @@
 export type ChatContent = {
 	type: AnswerType;
 	values: any;
-	error?:string;
+	error?: string;
 };
 
 export interface ChatMessage {

--
Gitblit v1.9.3