From 67e12e6933c8092e8e0d9eeb0c25d59c126ea0d7 Mon Sep 17 00:00:00 2001 From: heimoshuiyu Date: Wed, 14 Jun 2023 12:16:22 +0800 Subject: [PATCH] change default model to gpt-3.5-turbo-0613 --- src/app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.tsx b/src/app.tsx index 7246972..cf7afc3 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -35,7 +35,7 @@ const newChatStore = ( systemMessageContent = "你是一个有用的人工智能助理,根据我的提问和要求回答我的问题", apiEndpoint = _defaultAPIEndpoint, streamMode = true, - model = "gpt-3.5-turbo" + model = "gpt-3.5-turbo-0613" ): ChatStore => { return { chatgpt_api_web_version: CHATGPT_API_WEB_VERSION,