File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -878,8 +878,9 @@ const OperationTab = () => {
878878 < option value = "anthropic:claude-3-7-sonnet-latest" >
879879 Claude 3.7 ✨
880880 </ option >
881+ < option value = "google:gemini-2.5-pro" > Gemini 2.5 ✨</ option >
881882 < option value = "anthropic:claude-3-5-sonnet-latest" >
882- Claude 3.5 ✨
883+ Claude 3.5
883884 </ option >
884885 < option value = "groq:qwen-qwq-32b" > Qwen QwQ 32B 🧠</ option >
885886 < option value = "groq:llama-3.3-70b-versatile" > Llama 3.3 🔥</ option >
Original file line number Diff line number Diff line change @@ -470,6 +470,21 @@ if (env.CTTS_AI_LLM_GOOGLE_APPLICATION_CREDENTIALS) {
470470 streaming : true ,
471471 } ,
472472 } ) ;
473+
474+ addModel ( {
475+ provider : vertexProvider ,
476+ name : "google:gemini-2.5-pro-exp-03-25" ,
477+ aliases : [ "google:gemini-2.5-pro" , "gemini-2.5-pro" ] ,
478+ capabilities : {
479+ contextWindow : 1_048_576 ,
480+ maxOutputTokens : 65_536 ,
481+ images : true ,
482+ prefill : true ,
483+ systemPrompt : true ,
484+ stopSequences : true ,
485+ streaming : true ,
486+ } ,
487+ } ) ;
473488}
474489
475490if ( env . CTTS_AI_LLM_CEREBRAS_API_KEY ) {
You can’t perform that action at this time.
0 commit comments