Skip to content

Commit 7e91cf4

Browse files
authored
Adding Gemini 2.5 Pro to the list of available models (#936)
1 parent 5c0e869 commit 7e91cf4

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

jumble/src/views/CharmDetailView.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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>

toolshed/routes/ai/llm/models.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff 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

475490
if (env.CTTS_AI_LLM_CEREBRAS_API_KEY) {

0 commit comments

Comments
 (0)