From 5cb2abecaa0c4890132c635ae7c15f77bd5a3827 Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Fri, 18 Aug 2023 15:26:12 +0200 Subject: [PATCH] gpt-3.5-turbo-16k for memoryprompt --- app/store/chat.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/store/chat.ts b/app/store/chat.ts index 05b3ff059..78ef648af 100644 --- a/app/store/chat.ts +++ b/app/store/chat.ts @@ -555,7 +555,7 @@ export const useChatStore = create()( date: "", }), ), - config: { ...modelConfig, stream: true, model: "gpt-3.5-turbo" }, + config: { ...modelConfig, stream: true, model: "gpt-3.5-turbo-16k" }, onUpdate(message) { session.memoryPrompt = message; },