From 31b20f093aecc330943b2f0b553dc2fd27f543c2 Mon Sep 17 00:00:00 2001 From: Cebtenzzre Date: Mon, 25 Sep 2023 09:46:30 -0400 Subject: [PATCH] modellist: fix the system prompt --- gpt4all-chat/modellist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt4all-chat/modellist.h b/gpt4all-chat/modellist.h index c9608a2a..b17016c7 100644 --- a/gpt4all-chat/modellist.h +++ b/gpt4all-chat/modellist.h @@ -115,7 +115,7 @@ private: double m_repeatPenalty = 1.18; int m_repeatPenaltyTokens = 64; QString m_promptTemplate = "### Human:\n%1\n### Assistant:\n"; - QString m_systemPrompt = "### System:\nYou are an AI assistant who gives quality response to whatever humans ask of you.\n"; + QString m_systemPrompt = "### System:\nYou are an AI assistant who gives a quality response to whatever humans ask of you.\n"; friend class MySettings; }; Q_DECLARE_METATYPE(ModelInfo)