Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/proxy/schema/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,7 @@ export const AvailableEndpointTypes: { [name: string]: ModelEndpointType[] } = {
"grok-2-1212": ["xAI"],
"grok-vision-beta": ["xAI"],
"grok-beta": ["xAI"],
"gemini-2.5-computer-use-preview-10-2025": ["google"],
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Add Vertex provider for this Gemini computer-use model

This mapping hard-codes the new model as Google-only, but Google’s launch/docs for gemini-2.5-computer-use-preview-10-2025 state it is available on both Google AI Studio and Vertex AI; keeping it "google"-only causes provider selection helpers (for example getModelEndpointTypes, verification flows, and provider metadata consumers) to treat Vertex as unsupported for this model. Please include Vertex support here (and corresponding catalog/provider entries) so Vertex credentials can be selected for this model.

Useful? React with 👍 / 👎.

"deepseek.v3.2": ["bedrock"],
"gemini-3.1-flash-lite": ["google"],
"amazon.nova-premier-v1:0": ["bedrock"],
Expand Down
13 changes: 13 additions & 0 deletions packages/proxy/schema/model_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -6731,6 +6731,19 @@
"google"
]
},
"gemini-2.5-computer-use-preview-10-2025": {
"format": "google",
"flavor": "chat",
"multimodal": true,
"input_cost_per_mil_tokens": 1.25,
"output_cost_per_mil_tokens": 10,
"displayName": "Gemini 2.5 Computer Use Preview (10-2025)",
"max_input_tokens": 128000,
"max_output_tokens": 64000,
"available_providers": [
"google"
]
},
"grok-4-0709": {
"format": "openai",
"flavor": "chat",
Expand Down