Skip to content

Commit

Permalink
update - add mumbai for multi-region LLM
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyoungsu Park committed May 4, 2024
1 parent 75f597f commit 5987c96
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions cdk-voicebot/lib/cdk-voicebot-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ const claude3_sonnet = [
"model_type": "claude3",
"model_id": "anthropic.claude-3-sonnet-20240229-v1:0",
"maxOutputTokens": "4096"
},
{
"bedrock_region": "ap-south-1", // Mumbai
"model_type": "claude3",
"model_id": "anthropic.claude-3-sonnet-20240229-v1:0",
"maxOutputTokens": "4096"
}
];

Expand Down Expand Up @@ -73,6 +79,12 @@ const claude3_haiku = [
"model_type": "claude3",
"model_id": "anthropic.claude-3-haiku-20240307-v1:0",
"maxOutputTokens": "4096"
},
{
"bedrock_region": "ap-south-1", // Mumbai
"model_type": "claude3",
"model_id": "anthropic.claude-3-haiku-20240307-v1:0",
"maxOutputTokens": "4096"
}
];

Expand Down

0 comments on commit 5987c96

Please sign in to comment.