File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -178,8 +178,8 @@ await this.client.connect(transport);
178
178
179
179
First, install the [ AWS CDK CLI] ( https://docs.aws.amazon.com/cdk/v2/guide/getting_started.html#getting_started_install ) .
180
180
181
- Request [ Bedrock model access] ( https://us-east -2.console.aws.amazon.com/bedrock/home?region=us-east -2#/modelaccess )
182
- to Anthropic Claude 3.5 Sonnet v2 in region us-east -2.
181
+ Request [ Bedrock model access] ( https://us-west -2.console.aws.amazon.com/bedrock/home?region=us-west -2#/modelaccess )
182
+ to Anthropic Claude 3.5 Sonnet v2 in region us-west -2.
183
183
184
184
Install the mcp-lambda Python module from source:
185
185
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class Configuration:
25
25
def __init__ (
26
26
self ,
27
27
model_id = "anthropic.claude-3-5-sonnet-20241022-v2:0" ,
28
- region = "us-east -2" ,
28
+ region = "us-west -2" ,
29
29
) -> None :
30
30
"""Initialize configuration."""
31
31
self .model_id = model_id
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ Resources:
99
99
Action :
100
100
- " bedrock:InvokeModel"
101
101
Resource :
102
- - !Sub " arn:aws:bedrock:${AWS::Region} ::foundation-model/anthropic.claude-3-5-sonnet-20241022-v2:0"
102
+ - " arn:aws:bedrock:us-west-2 ::foundation-model/anthropic.claude-3-5-sonnet-20241022-v2:0"
103
103
Roles :
104
104
- !Ref IntegrationTestRole
105
105
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export class Configuration {
13
13
*/
14
14
constructor (
15
15
modelId : string = "anthropic.claude-3-5-sonnet-20241022-v2:0" ,
16
- region : string = "us-east -2"
16
+ region : string = "us-west -2"
17
17
) {
18
18
this . modelId = modelId ;
19
19
this . region = region ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class Configuration:
25
25
def __init__ (
26
26
self ,
27
27
model_id = "anthropic.claude-3-5-sonnet-20241022-v2:0" ,
28
- region = "us-east -2" ,
28
+ region = "us-west -2" ,
29
29
) -> None :
30
30
"""Initialize configuration."""
31
31
self .model_id = model_id
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export class Configuration {
13
13
*/
14
14
constructor (
15
15
modelId : string = "anthropic.claude-3-5-sonnet-20241022-v2:0" ,
16
- region : string = "us-east -2"
16
+ region : string = "us-west -2"
17
17
) {
18
18
this . modelId = modelId ;
19
19
this . region = region ;
You can’t perform that action at this time.
0 commit comments