From dc51d07fd8a6f59b40bca68cc49f34dd767265dd Mon Sep 17 00:00:00 2001 From: t11s Date: Tue, 23 Apr 2024 15:57:01 -0700 Subject: [PATCH] feat: use openai "assistant" system prompt via https://github.com/openai/simple-evals#user-content-fn-2-8424594b4432ef65cef6073f92873ee4, this should perform slightly better than the ChatGPT system prompt --- src/utils/constants.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 5c5cad4..7bbd1b1 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -20,9 +20,7 @@ export const DEFAULT_SETTINGS: Settings = { n: 3, autoZoom: true, model: "gpt-4", - defaultPreamble: `You are ChatGPT, a large language model trained by OpenAI, based on the GPT-4 architecture.\nKnowledge cutoff: 2022-01\nCurrent date: ${ - new Date().toISOString().split("T")[0] - }`, + defaultPreamble: `You are a helpful assistant.`, }; export const HOTKEY_CONFIG: Options = {