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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
LGTM! Verify regional availability with AWS Bedrock documentation.
The cross-region configuration is consistent with similar Claude 4.5 models and correctly uses the full model ID as the key.
Please verify that the regional availability (us, ap, eu) is accurate for this model:
🌐 Web query:
💡 Result:
Short answer — As of the Claude Haiku 4.5 release (model id/date 2025-10-01), Amazon Bedrock exposes Haiku 4.5 via global cross-region inference and region-specific (US and EU) inference profiles. Key details:
Global inference profile id: global.anthropic.claude-haiku-4-5-20251001-v1:0; callable from us-west-2, us-east-2, and us-east-1 (routes to all commercial AWS Regions). [1][2]
US (regional) profile id: us.anthropic.claude-haiku-4-5-20251001-v1:0; source Regions that can call it: us-west-2, us-west-1, us-east-2, us-east-1 (destination routing includes us-east-1, us-east-2, us-west-1, us-west-2 as shown per source). [1]
EU (regional) profile id: eu.anthropic.claude-haiku-4-5-20251001-v1:0; source Regions listed include eu-west-3, eu-west-2, eu-west-1, eu-south-2, eu-south-1, eu-north-1, eu-central-2, eu-central-1 with destination routing across EU regions (eu-central-1, eu-north-1, eu-south-1, eu-south-2, eu-west-1, eu-west-3). [1]
Anthropic docs confirm the Bedrock model name mapping for Haiku 4.5: anthropic.claude-haiku-4-5-20251001-v1:0 (Bedrock) / claude-haiku-4-5-20251001 (Claude API). [2]
Sources: AWS Bedrock documentation (inference profiles / region support) and Anthropic Claude 4.5 availability notes. [1][2]
References
[1] Amazon Bedrock — Supported inference profiles & region routing (model / inference-profile details).
[2] Anthropic — What's new / Claude 4.5 availability and Bedrock model names.
I found information about US and EU regional availability, but the search results don't explicitly confirm an AP (Asia Pacific) cross-region profile. Let me search more specifically for APAC region support:
Remove or correct the "ap" region entry—AWS Bedrock doesn't provide an APAC cross-region inference profile for Claude Haiku 4.5.
AWS Bedrock only documents an AU (Australia) inference profile for Claude Haiku 4.5, not an APAC or "ap" profile. A Global profile exists for this model, and a Japan-specific profile (jp.anthropic.claude-haiku-4-5-20251001-v1:0) is available, but there is no generic APAC cross-region profile documented.
Additionally, if an APAC profile did exist, the code should use the "apac" prefix (not "ap"), as AWS uses "us.", "eu.", or "apac." prefixes for inference profile IDs.
Either remove the "ap" entry or verify the intended region and use the correct prefix.
🤖 Prompt for AI Agents