Claude model comparison mode | Business conversation transition mode |
---|---|
- ✅ Make sure you have the
cdk
installed in your environment. If you don't have cdk, follow the link and install CDK: https://docs.aws.amazon.com/ko_kr/cdk/v2/guide/getting_started.html
# To check if you have AWS CDK
cdk --version ## if you don't have cdk -- Follow the link above and install it.
- ✅ Make sure you have the aws credential information stored in
~.aws/credentials
.
# To check if you have credential info
vi ~/.aws/credentials
## if the file is empty, please add your credentials using the command below.
aws configure # and enter your REGION, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY.
1. Enable Anthropic Claude model access on the Amazon Bedrock console
- How to add model access: Amazon Bedrock User Guide
- What to request: Haiku 3.0 and Sonnet 3.0 (+ Sonnet 3.5 if needed)
cdk bootstrap
cdk deploy ApiStack
# After deployment finished, the API Gateway Endpoint will be printed.
Copy the API Endpoint that came out as output in step2, find the INSERT_YOUR_API_GW_ENDPOINT
string in lib/WebStack/fe/index.html and replace it with the copied API URL.
cdk bootstrap
cdk deploy WebStack
# After deployment finished, the Cloudfront URL will be printed.