This sample project uses Amazon Bedrock Claude V3 sonnet LLM to create a draft blog from an image uploaded into Amazon S3 bucket
Learn more about this pattern at Serverless Land Patterns: https://serverlessland.com/patterns/s3-lambda-bedrock-sam
Important: this application uses various AWS services and there are costs associated with these services after the Free Tier usage - please see the AWS Pricing page for details. You are responsible for any AWS costs incurred. No warranty is implied in this example.
- Create an AWS account if you do not already have one and log in. The IAM user that you use must have sufficient permissions to make necessary AWS service calls and manage AWS resources.
- AWS CLI installed and configured
- Git Installed
- AWS Serverless Application Model (AWS SAM) installed
Amazon Bedrock users need to request access to models before they are available for use. Please request access for Claude V3 Sonnet LLM from the Amazon Bedrock console. Please refer to the link below for instruction: Model access.
-
Create a new directory, navigate to that directory in a terminal and clone the GitHub repository:
git clone https://github.com/biswanathmukherjee/s3-lambda-bedrock-sam.git
-
Change directory to the pattern directory:
cd s3-lambda-bedrock-sam
-
From the command line, use AWS SAM to deploy the AWS resources for the pattern as specified in the template.yml file:
sam deploy -g
-
During the prompts:
- Enter a stack name.
- Enter the desired AWS Region.
- Leave rest of the options as default.
Once you have run
sam deploy --guided
mode once and saved arguments to a configuration file (samconfig.toml), you can usesam deploy
in future to use these defaults. -
Note the outputs from the SAM deployment process. This contain the resource names and/or Ids which are used for next step as well as for testing.
-
Run the
create_lambda_layer.sh
. You may have to change the file permission to make it executable. This will create the lambda layer with necessary boto3 api for bedrock.bash create_lambda_layer.sh
-
Provide a name for the Lambda layer and the region. Such as:
Enter the name of the Layer: fpdf2_layer
It will show output like below:
Publishing the layer. Please wait ... { "Content": { ..... ..... }, "LayerArn": "arn:aws:lambda:us-east-1:xxxxxxxxxxxx:layer:fpdf2_layer", "LayerVersionArn": "arn:aws:lambda:us-east-1:xxxxxxxxxxxx:layer:fpdf2_layer:1", "Description": "", "CreatedDate": "YYYY-MM-DDT10:47:36.983+0000", "Version": 1 }
-
You may have to press
q
to come out of the output. Copy the value ofLayerVersionArn
from the above output and provide it into the next step. Such as:Enter the LayerVersionArn from the above command: arn:aws:lambda:us-east-1:xxxxxxxxxxxx:layer:fpdf2_layer:1
-
Please copy the value of
InvokeBedrockClaudeV3Function
from thesam deploy --guided
output and provide that as response to next question. Such as:Enter the Lambda function name from the SAM deploy output: your-stack-name-InvokeBedrockClaudeV3Function-xxxxxxxxxxxx
The script will now run aws cli command to add the newly created layer to the Lambda function. It will show output like below:
Adding the new layer to your Lambda function's configuration. Please wait ... { "FunctionName": "your-stack-name-InvokeBedrockClaudeV3Function-xxxxxxxxxxxx", ...... ...... "State": "Active", "LastUpdateStatus": "InProgress", "LastUpdateStatusReason": "The function is being created.", "LastUpdateStatusReasonCode": "Creating", "PackageType": "Zip", "Architectures": [ "arm64" ], "EphemeralStorage": { "Size": 512 } }
-
You may have to press
q
to come out of the output. The setup is ready for testing.
Please refer to the architecture diagram below:
- User uploads an architecture image file into the Amazon S3 input bucket.
- Amazon S3 triggers the AWS Lambda function when a new object is uploaded into the input S3 bucket.
- The AWS Lambda function reads the image file and converts into Base 64 encoded format and calls Amazon Bedrock API for Anthropic Claude V3 Sonnect LLM with the encoded data and prompt to create a blog from it.
- The Amazon Amazon Bedrock API for Anthropic Claude V3 Sonnect LLM generated the blog content and retuns the JSON response.
- The AWS Lambda function creates a pdf file with the blog content and saves it into an Amazon S3 output bucket.
-
From the command line, please execute the below command to upload the
sample-architecture.jpeg
file into the Amazon S3 bucket. Please replaceMyInputBucketName
from thesam deploy
output and also your region.aws s3 cp sample-architecture.jpeg s3://{MyInputBucketName}/sample-architecture.jpeg --region {your-region}
-
Log into Amazon S3 Console, within a few seconds, you should see a
draft-blog.pdf
file uploaded into the theMyOutputBucketName
S3 bucket. Download the file from the bucket using the below command and validate the content.aws s3 cp s3://{MyOutputBucketName}/draft-blog.pdf ./draft-blog.pdf --region {your-region}
-
Delete the content in the Amazon S3 bucket using the following command. Please update
MyInputBucketName
from thesam deploy
output. Please ensure that the correct bucket name is provided to avoid accidental data loss:aws s3 rm s3://{MyInputBucketName} --recursive --region {your-region} aws s3 rm s3://{MyOutputBucketName} --recursive --region {your-region}
-
Delete the AWS Lambda layer using the following command:
bash delete_lambda_layer.sh
-
To delete the resources deployed to your AWS account via AWS SAM, run the following command:
sam delete