mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-17 13:06:21 +00:00
💄 style: added eu-central-1 region for bedrock (#6555)
This commit is contained in:
@@ -54,7 +54,7 @@ export const useBedrockProvider = (): ProviderItem => {
|
||||
children: (
|
||||
<Select
|
||||
allowClear
|
||||
options={['us-east-1', 'us-west-2', 'ap-southeast-1'].map((i) => ({
|
||||
options={['us-east-1', 'us-west-2', 'ap-southeast-1', 'eu-central-1'].map((i) => ({
|
||||
label: i,
|
||||
value: i,
|
||||
}))}
|
||||
|
||||
@@ -68,7 +68,7 @@ const useBedrockCard = (): ProviderItem => {
|
||||
) : (
|
||||
<Select
|
||||
allowClear
|
||||
options={['us-east-1', 'us-west-2', 'ap-southeast-1'].map((i) => ({
|
||||
options={['us-east-1', 'us-west-2', 'ap-southeast-1', 'eu-central-1'].map((i) => ({
|
||||
label: i,
|
||||
value: i,
|
||||
}))}
|
||||
|
||||
@@ -77,7 +77,7 @@ const BedrockForm = memo(() => {
|
||||
onChange={(region) => {
|
||||
setConfig('bedrock', { region });
|
||||
}}
|
||||
options={['us-east-1', 'us-west-2', 'ap-southeast-1'].map((i) => ({
|
||||
options={['us-east-1', 'us-west-2', 'ap-southeast-1', 'eu-central-1'].map((i) => ({
|
||||
label: i,
|
||||
value: i,
|
||||
}))}
|
||||
|
||||
Reference in New Issue
Block a user