From aba4e422020f09995e475b5814696592103cda34 Mon Sep 17 00:00:00 2001 From: heimoshuiyu Date: Tue, 24 Oct 2023 22:45:22 +0800 Subject: [PATCH] remove default system message --- src/app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.tsx b/src/app.tsx index 39e5c80..5a4c133 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -45,7 +45,7 @@ export interface ChatStore { const _defaultAPIEndpoint = "https://api.openai.com/v1/chat/completions"; const newChatStore = ( apiKey = "", - systemMessageContent = "Follow my instructions carefully", + systemMessageContent = "", apiEndpoint = _defaultAPIEndpoint, streamMode = true, model = "gpt-3.5-turbo-0613",