Просмотр исходного кода

feat: add Bedrock Opus 4.5 to global inference model list (#9595)

Co-authored-by: Roo Code <[email protected]>
roomote[bot] 1 месяц назад
Родитель
Сommit
099ea6dc6a
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      packages/types/src/providers/bedrock.ts

+ 3 - 1
packages/types/src/providers/bedrock.ts

@@ -469,12 +469,14 @@ export const BEDROCK_1M_CONTEXT_MODEL_IDS = [
 ] as const
 
 // Amazon Bedrock models that support Global Inference profiles
-// As of Oct 2025, AWS supports Global Inference for:
+// As of Nov 2025, AWS supports Global Inference for:
 // - Claude Sonnet 4
 // - Claude Sonnet 4.5
 // - Claude Haiku 4.5
+// - Claude Opus 4.5
 export const BEDROCK_GLOBAL_INFERENCE_MODEL_IDS = [
 	"anthropic.claude-sonnet-4-20250514-v1:0",
 	"anthropic.claude-sonnet-4-5-20250929-v1:0",
 	"anthropic.claude-haiku-4-5-20251001-v1:0",
+	"anthropic.claude-opus-4-5-20251101-v1:0",
 ] as const