Skip to content

Commit 622d8a4

Browse files
authored
Merge pull request #5063 from ChenglongWang/summary_model
Change gpt summary model to gpt-4o-mini
2 parents b44086f + 0236e13 commit 622d8a4

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
@@ -185,7 +185,7 @@ Latex inline: \\(x^2\\)
185185
Latex block: $$e=mc^2$$
186186
`;
187187

188-
export const SUMMARIZE_MODEL = "gpt-3.5-turbo";
188+
export const SUMMARIZE_MODEL = "gpt-4o-mini";
189189
export const GEMINI_SUMMARIZE_MODEL = "gemini-pro";
190190

191191
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)