Skip to content

Commit 4dbb1c2

Browse files
committed
Switch back to us-west-2 for inference (no on-demand in us-east-2)
1 parent 0f885fa commit 4dbb1c2

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ await this.client.connect(transport);
178178

179179
First, install the [AWS CDK CLI](https://docs.aws.amazon.com/cdk/v2/guide/getting_started.html#getting_started_install).
180180

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.
183183

184184
Install the mcp-lambda Python module from source:
185185

e2e_tests/python/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Configuration:
2525
def __init__(
2626
self,
2727
model_id="anthropic.claude-3-5-sonnet-20241022-v2:0",
28-
region="us-east-2",
28+
region="us-west-2",
2929
) -> None:
3030
"""Initialize configuration."""
3131
self.model_id = model_id

e2e_tests/setup/integ-test-authentication.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Resources:
9999
Action:
100100
- "bedrock:InvokeModel"
101101
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"
103103
Roles:
104104
- !Ref IntegrationTestRole
105105

e2e_tests/typescript/src/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class Configuration {
1313
*/
1414
constructor(
1515
modelId: string = "anthropic.claude-3-5-sonnet-20241022-v2:0",
16-
region: string = "us-east-2"
16+
region: string = "us-west-2"
1717
) {
1818
this.modelId = modelId;
1919
this.region = region;

examples/chatbots/python/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Configuration:
2525
def __init__(
2626
self,
2727
model_id="anthropic.claude-3-5-sonnet-20241022-v2:0",
28-
region="us-east-2",
28+
region="us-west-2",
2929
) -> None:
3030
"""Initialize configuration."""
3131
self.model_id = model_id

examples/chatbots/typescript/src/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class Configuration {
1313
*/
1414
constructor(
1515
modelId: string = "anthropic.claude-3-5-sonnet-20241022-v2:0",
16-
region: string = "us-east-2"
16+
region: string = "us-west-2"
1717
) {
1818
this.modelId = modelId;
1919
this.region = region;

0 commit comments

Comments
 (0)