Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion codex-rs/model-provider/src/amazon_bedrock/mantle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ use super::auth::BedrockAuthMethod;
use super::auth::resolve_auth_method;

const BEDROCK_MANTLE_SERVICE_NAME: &str = "bedrock-mantle";
const BEDROCK_MANTLE_SUPPORTED_REGIONS: [&str; 12] = [
const BEDROCK_MANTLE_SUPPORTED_REGIONS: [&str; 13] = [
"us-east-2",
"us-east-1",
"us-west-2",
"us-gov-west-1",
"ap-southeast-3",
"ap-south-1",
"ap-northeast-1",
Expand Down Expand Up @@ -72,6 +73,10 @@ mod tests {
base_url("ap-northeast-1").expect("supported region"),
"https://bedrock-mantle.ap-northeast-1.api.aws/openai/v1"
);
assert_eq!(
base_url("us-gov-west-1").expect("supported region"),
"https://bedrock-mantle.us-gov-west-1.api.aws/openai/v1"
Comment thread
CHARLESPALEN-OAI marked this conversation as resolved.
Comment thread
CHARLESPALEN-OAI marked this conversation as resolved.
);
}

#[test]
Expand Down
Loading