@@ -143,6 +143,30 @@ export const bedrockModels = {
143143 maxCachePoints : 4 ,
144144 cachableFields : [ "system" , "messages" , "tools" ] ,
145145 } ,
146+ "anthropic.claude-opus-4-7" : {
147+ maxTokens : 8192 ,
148+ contextWindow : 200_000 , // Default 200K, extendable to 1M with beta flag 'context-1m-2025-08-07'
149+ supportsImages : true ,
150+ supportsPromptCache : true ,
151+ supportsReasoningBudget : true ,
152+ inputPrice : 5.0 , // $5 per million input tokens (≤200K context)
153+ outputPrice : 25.0 , // $25 per million output tokens (≤200K context)
154+ cacheWritesPrice : 6.25 , // $6.25 per million tokens
155+ cacheReadsPrice : 0.5 , // $0.50 per million tokens
156+ minTokensPerCachePoint : 1024 ,
157+ maxCachePoints : 4 ,
158+ cachableFields : [ "system" , "messages" , "tools" ] ,
159+ // Tiered pricing for extended context (requires beta flag 'context-1m-2025-08-07')
160+ tiers : [
161+ {
162+ contextWindow : 1_000_000 , // 1M tokens with beta flag
163+ inputPrice : 10.0 , // $10 per million input tokens (>200K context)
164+ outputPrice : 37.5 , // $37.50 per million output tokens (>200K context)
165+ cacheWritesPrice : 12.5 , // $12.50 per million tokens (>200K context)
166+ cacheReadsPrice : 1.0 , // $1.00 per million tokens (>200K context)
167+ } ,
168+ ] ,
169+ } ,
146170 "anthropic.claude-opus-4-6-v1" : {
147171 maxTokens : 8192 ,
148172 contextWindow : 200_000 , // Default 200K, extendable to 1M with beta flag 'context-1m-2025-08-07'
@@ -524,6 +548,7 @@ export const BEDROCK_1M_CONTEXT_MODEL_IDS = [
524548 "anthropic.claude-sonnet-4-20250514-v1:0" ,
525549 "anthropic.claude-sonnet-4-5-20250929-v1:0" ,
526550 "anthropic.claude-sonnet-4-6" ,
551+ "anthropic.claude-opus-4-7" ,
527552 "anthropic.claude-opus-4-6-v1" ,
528553] as const
529554
@@ -541,6 +566,7 @@ export const BEDROCK_GLOBAL_INFERENCE_MODEL_IDS = [
541566 "anthropic.claude-sonnet-4-6" ,
542567 "anthropic.claude-haiku-4-5-20251001-v1:0" ,
543568 "anthropic.claude-opus-4-5-20251101-v1:0" ,
569+ "anthropic.claude-opus-4-7" ,
544570 "anthropic.claude-opus-4-6-v1" ,
545571] as const
546572
0 commit comments