Skip to content

Commit 0236e13

Browse files
Change gpt summary model to gpt-4o-mini.
1 parent e079f1b commit 0236e13

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/constant.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Latex inline: \\(x^2\\)
176176
Latex block: $$e=mc^2$$
177177
`;
178178

179-
export const SUMMARIZE_MODEL = "gpt-3.5-turbo";
179+
export const SUMMARIZE_MODEL = "gpt-4o-mini";
180180
export const GEMINI_SUMMARIZE_MODEL = "gemini-pro";
181181

182182
export const KnowledgeCutOffDate: Record<string, string> = {

app/store/chat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function createEmptySession(): ChatSession {
9090
}
9191

9292
function getSummarizeModel(currentModel: string) {
93-
// if it is using gpt-* models, force to use 3.5 to summarize
93+
// if it is using gpt-* models, force to use 4o-mini to summarize
9494
if (currentModel.startsWith("gpt")) {
9595
const configStore = useAppConfig.getState();
9696
const accessStore = useAccessStore.getState();

0 commit comments

Comments
 (0)