From 241a93b151d25915dc486162c3840009be995d1b Mon Sep 17 00:00:00 2001 From: heimoshuiyu Date: Sun, 26 Mar 2023 18:36:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E9=BB=98=E8=AE=A4=20system?= =?UTF-8?q?=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.tsx b/src/app.tsx index 3f3e91b..1359801 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -20,7 +20,7 @@ export interface ChatStore { const _defaultAPIEndpoint = "https://api.openai.com/v1/chat/completions"; const newChatStore = ( apiKey = "", - systemMessageContent = "你是一个有用的人工智能助理", + systemMessageContent = "你是一个有用的人工智能助理,根据我的提问和要求回答我的问题", apiEndpoint = _defaultAPIEndpoint, streamMode = true ): ChatStore => {