From 0f217065fbdbe307d6701332be2b73e49f6aefb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=9F=E8=B4=A4?= Date: Wed, 25 Oct 2023 13:47:54 +0800 Subject: [PATCH] fix tets --- src/ProChat/types/config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ProChat/types/config.ts b/src/ProChat/types/config.ts index 6563c525..1501e2fe 100644 --- a/src/ProChat/types/config.ts +++ b/src/ProChat/types/config.ts @@ -58,13 +58,13 @@ export interface ModelConfig { /** * 角色所使用的语言模型 */ - model: string; + model?: string; /** * 语言模型参数 */ - params: ModelParams; + params?: ModelParams; /** * 系统角色 */ - systemRole: string; + systemRole?: string; }