File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ Latex inline: \\(x^2\\)
176176Latex block: $$e=mc^2$$
177177` ;
178178
179- export const SUMMARIZE_MODEL = "gpt-3.5-turbo " ;
179+ export const SUMMARIZE_MODEL = "gpt-4o-mini " ;
180180export const GEMINI_SUMMARIZE_MODEL = "gemini-pro" ;
181181
182182export const KnowledgeCutOffDate : Record < string , string > = {
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ function createEmptySession(): ChatSession {
9090}
9191
9292function 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 ( ) ;
You can’t perform that action at this time.
0 commit comments