-
Notifications
You must be signed in to change notification settings - Fork 60
chore: update model catalog from bot issues #909
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7062,6 +7062,24 @@ | |
| "bedrock" | ||
| ] | ||
| }, | ||
| "global.anthropic.claude-sonnet-5": { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
These new Bedrock Anthropic IDs are the only Bedrock Claude entries without Useful? React with 👍 / 👎. |
||
| "format": "anthropic", | ||
| "flavor": "chat", | ||
| "multimodal": true, | ||
| "input_cost_per_mil_tokens": 3, | ||
| "output_cost_per_mil_tokens": 15, | ||
| "input_cache_read_cost_per_mil_tokens": 0.3, | ||
| "input_cache_write_cost_per_mil_tokens": 3.75, | ||
| "displayName": "Global Claude Sonnet 5", | ||
| "reasoning": true, | ||
| "reasoning_budget": true, | ||
| "parent": "anthropic.claude-sonnet-5", | ||
| "max_input_tokens": 1000000, | ||
| "max_output_tokens": 128000, | ||
| "available_providers": [ | ||
| "bedrock" | ||
| ] | ||
| }, | ||
| "anthropic.claude-3-5-haiku-20241022-v1:0": { | ||
| "format": "anthropic", | ||
| "flavor": "chat", | ||
|
|
@@ -7562,6 +7580,24 @@ | |
| "bedrock" | ||
| ] | ||
| }, | ||
| "us.anthropic.claude-sonnet-5": { | ||
| "format": "anthropic", | ||
| "flavor": "chat", | ||
| "multimodal": true, | ||
| "input_cost_per_mil_tokens": 3, | ||
| "output_cost_per_mil_tokens": 15, | ||
| "input_cache_read_cost_per_mil_tokens": 0.3, | ||
| "input_cache_write_cost_per_mil_tokens": 3.75, | ||
| "displayName": "US Claude Sonnet 5", | ||
| "reasoning": true, | ||
| "reasoning_budget": true, | ||
| "parent": "anthropic.claude-sonnet-5", | ||
| "max_input_tokens": 1000000, | ||
| "max_output_tokens": 128000, | ||
| "available_providers": [ | ||
| "bedrock" | ||
| ] | ||
| }, | ||
| "apac.anthropic.claude-3-haiku-20240307-v1:0": { | ||
| "format": "anthropic", | ||
| "flavor": "chat", | ||
|
|
@@ -11809,6 +11845,26 @@ | |
| "vertex" | ||
| ] | ||
| }, | ||
| "gemini-3.1-flash-lite-image": { | ||
| "format": "google", | ||
| "flavor": "chat", | ||
| "multimodal": true, | ||
| "input_cost_per_mil_tokens": 0.25, | ||
| "output_cost_per_mil_tokens": 1.5, | ||
| "displayName": "Gemini 3.1 Flash-Lite Image", | ||
| "fallback_models": [ | ||
| "publishers/google/models/gemini-3.1-flash-lite-image" | ||
| ], | ||
| "supported_regions": [ | ||
| "global" | ||
| ], | ||
| "max_input_tokens": 65536, | ||
| "max_output_tokens": 4096, | ||
| "available_providers": [ | ||
| "google", | ||
| "vertex" | ||
| ] | ||
| }, | ||
| "publishers/google/models/gemini-2.5-computer-use-preview-10-2025": { | ||
| "format": "google", | ||
| "flavor": "chat", | ||
|
|
@@ -12266,7 +12322,9 @@ | |
| "reasoning_budget": true, | ||
| "fallback_models": [ | ||
| "anthropic.claude-sonnet-5", | ||
| "publishers/anthropic/models/claude-sonnet-5" | ||
| "global.anthropic.claude-sonnet-5", | ||
| "publishers/anthropic/models/claude-sonnet-5", | ||
| "us.anthropic.claude-sonnet-5" | ||
| ], | ||
| "max_input_tokens": 1000000, | ||
| "max_output_tokens": 128000, | ||
|
|
@@ -12310,6 +12368,22 @@ | |
| "vertex" | ||
| ] | ||
| }, | ||
| "publishers/google/models/gemini-3.1-flash-lite-image": { | ||
| "format": "google", | ||
| "flavor": "chat", | ||
| "multimodal": true, | ||
| "input_cost_per_mil_tokens": 0.25, | ||
| "output_cost_per_mil_tokens": 1.5, | ||
| "displayName": "Gemini 3.1 Flash-Lite Image", | ||
| "locations": [ | ||
| "global" | ||
| ], | ||
| "max_input_tokens": 65536, | ||
| "max_output_tokens": 4096, | ||
| "available_providers": [ | ||
| "vertex" | ||
| ] | ||
| }, | ||
| "gemma-4-31b": { | ||
| "format": "openai", | ||
| "flavor": "chat", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For this exact short model ID, adding
vertexmakesgetDirectModelEndpointTypes("gemini-3.1-flash-lite-image")route Vertex credentials directly tofetchGoogleChatCompletions; that path appends the raw model string into the Vertex URL (.../locations/<loc>/${model}:generateContent), so a Vertex call uses.../gemini-3.1-flash-lite-imageinstead of the publisher resource added on the next line. The existing BT-5895 test inpackages/proxy/schema/index.test.tsdocuments that short Gemini IDs should remain Google-only and get Vertex via the fallback publisher model.Useful? React with 👍 / 👎.