Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/guides/configuration/llm_providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
26 changes: 25 additions & 1 deletion frontend/src/components/app-config/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Loading