Skip to content
Closed
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 .tmp/review/Roo-Code
Submodule Roo-Code added at 8dbd8c
1 change: 1 addition & 0 deletions .work/pr-8373/Roo-Code
Submodule Roo-Code added at b832e9
1 change: 1 addition & 0 deletions .work/reviews/Roo-Code
Submodule Roo-Code added at ea8420
13 changes: 13 additions & 0 deletions packages/types/src/providers/vertex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export type VertexModelId = keyof typeof vertexModels
export const vertexDefaultModelId: VertexModelId = "claude-sonnet-4@20250514"

export const vertexModels = {
// Deprecated: Use claude-sonnet-4-5@20250929 instead
Copy link
Contributor Author

Choose a reason for hiding this comment

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

[P2] Consider documenting a deprecation timeline (e.g., removal date or next minor release) for "claude-4.5-sonnet" to clarify when this legacy ID will be dropped.

"claude-4.5-sonnet": {
maxTokens: 8192,
contextWindow: 200_000,
Expand All @@ -18,6 +19,18 @@ export const vertexModels = {
cacheReadsPrice: 0.3,
supportsReasoningBudget: true,
},
"claude-sonnet-4-5@20250929": {
maxTokens: 8192,
contextWindow: 200_000,
supportsImages: true,
supportsComputerUse: true,
supportsPromptCache: true,
inputPrice: 3.0,
outputPrice: 15.0,
cacheWritesPrice: 3.75,
cacheReadsPrice: 0.3,
supportsReasoningBudget: true,
},
"gemini-2.5-flash-preview-05-20:thinking": {
maxTokens: 65_535,
contextWindow: 1_048_576,
Expand Down
Loading