From f4eda815380260f7b9d5225b8a3843f545d87e5e Mon Sep 17 00:00:00 2001 From: t11s Date: Mon, 13 May 2024 10:55:19 -0700 Subject: [PATCH] feat: gpt-4o as new default model --- src/utils/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/constants.ts b/src/utils/constants.ts index f849b56..e67ea56 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -19,7 +19,7 @@ export const DEFAULT_SETTINGS: Settings = { temp: 1, n: 3, autoZoom: true, - model: "gpt-4-turbo", + model: "gpt-4o", defaultPreamble: `You are a helpful assistant.`, };