@@ -3,21 +3,9 @@ import type { ModelInfo } from "../model.js"
33// https://cloud.google.com/vertex-ai/generative-ai/docs/partner-models/use-claude
44export type VertexModelId = keyof typeof vertexModels
55
6- export const vertexDefaultModelId : VertexModelId = "claude-sonnet-4@20250514 "
6+ export const vertexDefaultModelId : VertexModelId = "claude-sonnet-4-5@20250929 "
77
88export const vertexModels = {
9- "claude-4.5-sonnet" : {
10- maxTokens : 8192 ,
11- contextWindow : 200_000 ,
12- supportsImages : true ,
13- supportsComputerUse : true ,
14- supportsPromptCache : true ,
15- inputPrice : 3.0 ,
16- outputPrice : 15.0 ,
17- cacheWritesPrice : 3.75 ,
18- cacheReadsPrice : 0.3 ,
19- supportsReasoningBudget : true ,
20- } ,
219 "gemini-2.5-flash-preview-05-20:thinking" : {
2210 maxTokens : 65_535 ,
2311 contextWindow : 1_048_576 ,
@@ -187,6 +175,18 @@ export const vertexModels = {
187175 cacheReadsPrice : 0.3 ,
188176 supportsReasoningBudget : true ,
189177 } ,
178+ "claude-sonnet-4-5@20250929" : {
179+ maxTokens : 8192 ,
180+ contextWindow : 200_000 ,
181+ supportsImages : true ,
182+ supportsComputerUse : true ,
183+ supportsPromptCache : true ,
184+ inputPrice : 3.0 ,
185+ outputPrice : 15.0 ,
186+ cacheWritesPrice : 3.75 ,
187+ cacheReadsPrice : 0.3 ,
188+ supportsReasoningBudget : true ,
189+ } ,
190190 "claude-opus-4-1@20250805" : {
191191 maxTokens : 8192 ,
192192 contextWindow : 200_000 ,
0 commit comments