From d86789774634a9651aabdfd1a75f0972b252252b Mon Sep 17 00:00:00 2001 From: Shardul Vaidya <31039336+5herlocked@users.noreply.github.com> Date: Mon, 12 May 2025 04:41:45 -0400 Subject: [PATCH] bedrock: Support cross-region inference for US Claude 3.5 Haiku (#28523) Release Notes: - Added Cross-Region inference support for US Claude 3.5 Haiku Co-authored-by: Peter Tripp Co-authored-by: Marshall Bowers --- crates/bedrock/src/models.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bedrock/src/models.rs b/crates/bedrock/src/models.rs index 044b46d0bd84e4f5da0884c1c5b22b0d61c1459c..6745b49cd58f9907446882980d39282bbca4dda9 100644 --- a/crates/bedrock/src/models.rs +++ b/crates/bedrock/src/models.rs @@ -321,6 +321,7 @@ impl Model { // Models available only in US (Model::Claude3Opus, "us") + | (Model::Claude3_5Sonnet, "us") | (Model::Claude3_7Sonnet, "us") | (Model::Claude3_7SonnetThinking, "us") | (Model::AmazonNovaPremier, "us") => Ok(format!("{}.{}", region_group, model_id)),