File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ Latex inline: \\(x^2\\)
185185Latex block: $$e=mc^2$$
186186` ;
187187
188- export const SUMMARIZE_MODEL = "gpt-3.5-turbo " ;
188+ export const SUMMARIZE_MODEL = "gpt-4o-mini " ;
189189export const GEMINI_SUMMARIZE_MODEL = "gemini-pro" ;
190190
191191export 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