fix: improve Bedrock Claude 4.5 model detection for custom ARNs #8562
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR fixes an issue where AWS Bedrock was not correctly inferring model capabilities for Claude 4.5 Sonnet when using custom ARNs with cross-region inference.
Problem
When users specified a custom ARN like
au.anthropic.claude-sonnet-4-5-20250929-v1:0with regionap-southeast-2, the model capabilities were incorrectly detected:Solution
guessModelInfoFromIdmethod to check more specific patterns first (e.g.,claude-sonnet-4-5before genericclaude-4)parseBaseModelIdto handle additional regional prefixes includingau.,af.,me.,il.,cn., andjp.Changes
guessModelInfoFromIdmethod with more specific pattern matchingparseBaseModelIdTesting
bedrock.spec.tsandbedrock-custom-arn.spec.tsFixes #8561
Important
Fixes AWS Bedrock model detection for Claude 4.5 Sonnet with custom ARNs by updating detection logic and handling regional prefixes.
guessModelInfoFromId().guessModelInfoFromId()inbedrock.tsto prioritize specific patterns likeclaude-sonnet-4-5.parseBaseModelId()to handle regional prefixes likeau.,af.,me., etc.bedrock.spec.tsandbedrock-custom-arn.spec.ts.This description was created by
for 9d835c2. You can customize this summary. It will automatically update as commits are pushed.