mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
feat: enable 1M context window for Claude Sonnet 4 and 4.5 on Vertex AI
- Update claude-sonnet-4@20250514 contextWindow from 200k to 1M - Update claude-sonnet-4-5@20250929 contextWindow from 200k to 1M This aligns with Google Vertex AI documentation showing GA support for 1M context on Sonnet 4 and beta support for Sonnet 4.5 Fixes #8671
This commit is contained in:
parent
6b8c21f873
commit
1d14c33d43
1 changed files with 2 additions and 2 deletions
|
|
@ -165,7 +165,7 @@ export const vertexModels = {
|
|||
},
|
||||
"claude-sonnet-4@20250514": {
|
||||
maxTokens: 8192,
|
||||
contextWindow: 200_000,
|
||||
contextWindow: 1_000_000,
|
||||
supportsImages: true,
|
||||
supportsComputerUse: true,
|
||||
supportsPromptCache: true,
|
||||
|
|
@ -177,7 +177,7 @@ export const vertexModels = {
|
|||
},
|
||||
"claude-sonnet-4-5@20250929": {
|
||||
maxTokens: 8192,
|
||||
contextWindow: 200_000,
|
||||
contextWindow: 1_000_000,
|
||||
supportsImages: true,
|
||||
supportsComputerUse: true,
|
||||
supportsPromptCache: true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue