Ver Fonte

feat: close #2583 do not summarize with gpt-4

Yidadaa há 1 ano atrás
pai
commit
769c2f9f49
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      app/store/chat.ts

+ 1 - 1
app/store/chat.ts

@@ -553,7 +553,7 @@ export const useChatStore = create<ChatStore>()(
                 date: "",
               }),
             ),
-            config: { ...modelConfig, stream: true },
+            config: { ...modelConfig, stream: true, model: "gpt-3.5-turbo" },
             onUpdate(message) {
               session.memoryPrompt = message;
             },