diff --git a/docs/guides/configuration/llm_providers.md b/docs/guides/configuration/llm_providers.md index 581f31b723d..d788a0cfc1a 100644 --- a/docs/guides/configuration/llm_providers.md +++ b/docs/guides/configuration/llm_providers.md @@ -133,7 +133,7 @@ region_name = "us-east-1" # AWS region where Bedrock is available profile_name = "my-profile" ``` -Use `profile_name` for a non-default named profile, or rely on env vars/standard AWS resolution. +Use `profile_name` for a non-default named profile, or rely on env vars/standard AWS resolution. For regional inference models, specify the inference profile ID (e.g., `bedrock/eu.anthropic.claude-sonnet-4-20250514-v1:0`) and corresponding region. ??? tip "Required AWS Bedrock permissions" Ensure your IAM policy allows `bedrock:InvokeModel` and `bedrock:InvokeModelWithResponseStream` for the models you plan to use. diff --git a/frontend/src/components/app-config/constants.ts b/frontend/src/components/app-config/constants.ts index 192df4e0c56..f8138e02a08 100644 --- a/frontend/src/components/app-config/constants.ts +++ b/frontend/src/components/app-config/constants.ts @@ -6,8 +6,32 @@ export const AWS_REGIONS = [ "us-east-1", "us-east-2", + "us-west-1", "us-west-2", - "eu-central-1", "ap-northeast-1", + "ap-northeast-2", + "ap-northeast-3", + "ap-south-1", + "ap-south-2", "ap-southeast-1", + "ap-southeast-2", + "ap-southeast-3", + "ap-southeast-4", + "ap-southeast-5", + "ap-southeast-7", + "ap-east-2", + "ca-central-1", + "eu-central-1", + "eu-central-2", + "eu-north-1", + "eu-south-1", + "eu-south-2", + "eu-west-1", + "eu-west-2", + "eu-west-3", + "il-central-1", + "me-central-1", + "sa-east-1", + "us-gov-east-1", + "us-gov-west-1", ] as const;