Amazon Bedrock can now process various content types through the Amazon Nova Model, enabling you to create AI assistants that understand context across different media formats. This post will demonstrate how to build a WhatsApp assistant that analyzes images, processes videos, extracts information from documents, and transcribes audio messages—all while maintaining context throughout the conversation with Amazon Bedrock Agents.
You'll learn how to combine Amazon Bedrock with AWS End User Messaging for direct WhatsApp integration, creating a serverless solution that eliminates the need for additional API layers.
Your data will be securely stored in your AWS account and will not be shared or used for model training. It is not recommended to share private information because the security of data with WhatsApp is not guaranteed.
Voice notes | Image |
---|---|
![]() |
![]() |
Video | Document |
---|---|
![]() |
![]() |
✅ AWS Level: Advanced - 300
Prerequisites:
- AWS Account
- Foundational knowledge of Python
- AWS CLI configured with appropriate permissions.
- Python 3.8 or later.
- AWS AWS Cloud Development Kit (CDK) v2.172.0 or later.
- Have or create a Meta Business Account
The project uses AWS AWS Cloud Development Kit (CDK) to define and deploy the following resources:
-
whatsapp_in
: Processes incoming WhatsApp messages.transcriber_done
: Handles completed transcription jobs.bedrock_agent
: Invokes the Amazon Bedrock Agent.
-
Amazon Simple Storage Service (Amazon S3):
- Bucket for storing media files (voice, image, video, document).
-
messages
: Stores WhatsApp message dataagenthistory
: Stores conversation history for the Amazon Bedrock Converse API, when image, documents and video is processing.
-
Amazon Simple Notification Service (SNS):
- Topic for receiving WhatsApp events.
-
AWS Identity and Access Management:
- Roles and policies for Lambda functions and Bedrock Agent.
-
- Agent configured for processing messages.
- Converse API invocation for processing documents, images and videos.
- Agent Alias for versioning.
-
- Used for transcribing audio messages.
-
- Natively links WhatsApp Business Account (WABA) and AWS account.
The infrastructure is defined in the PrivateAssistantV2Stack
class within the private_assistant_v2_stack.py
file.
- User sends a WhatsApp message.
- Message is published to the SNS Topic.
whatsapp_in
AWS Lambda function is triggered.- Message is processed based on its type:
- Text: Sent directly to Amazon Bedrock Agent.
- Audio: Transcribed using Amazon Transcribe, once the transcribe job is done.
transcriber_done
Lambda function is triggered and then sent the text to Amazon Bedrock Agent. - Image/Video/Document: Stored in S3, then analyzed by Amazon Bedrock Agent converse API, save the input and response as ConversationHistory Contents in an AgentHistory Amazon DynamoDB table.
bedrock_agent
Lambda function processes the message and generates a response- Response is sent back to the user via WhatsApp.
- Amazon Bedrock Pricing
- AWS Lambda Pricing
- Amazon Transcribe Pricing
- Amazon S3 Pricing
- Amazon DynamoDB Pricing
- AWS End User Messaging Pricing
- Amazon Simple Notification Service Pricing
- Whatsapp pricing
app.py
: Entry point for the CDK application.private_assistant_v2_stack.py
: Main stack definition for the AI assistant.lambdas/code/
: Contains Lambda functions for processing WhatsApp messages, invoking Bedrock Agent, and handling transcriptions.layers/
: Contains shared code and dependencies for AWS Lambda functions.agent_bedrock/create_agent.py
: Defines the Bedrock Agent configuration.
⏱️ Estimated time to complete: 10-15 minutes
✅ Clone the repository:
git clone https://github.com/build-on-aws/building-gen-ai-whatsapp-assistant-with-amazon-bedrock-and-python
cd private_assistant_v2
✅ Create and activate a virtual environment:
python3 -m venv .venv
source .venv/bin/activate # On Windows, use `.venv\Scripts\activate`
✅ Install dependencies:
pip install -r requirements.txt
✅ Synthesize The Cloudformation Template With The Following Command:
cdk synth
✅ The Deployment🚀:
cdk deploy
Note the output values, especially the SNS Topic ARN, which will be used for configuring the WhatsApp integration.
1- Get Started with the New WhatsApp Business Platform
2- How To Generate a Permanent Access Token — WhatsApp API
3- Get started with the Messenger API for Instagram
Set up a WhatsApp Business account by follow the [Getting started with AWS End User Messaging Social steps](https://docs.aws.amazon.com/social-messaging/latest/userguide/getting-started-whatsapp.html and configure it to send messages to the SNS Topic created by this stack.
You can also follow the more detailed steps in Automate workflows with WhatsApp using AWS End User Messaging Social blog.
Update the agent_data.json
file in the private_assistant_v2/
directory to customize the Bedrock Agent's behavior.
- Adjust environment variables in
private_assistant_v2_stack.py
if needed, such as S3 bucket prefixes or DynamoDB table names.
To test the AI assistant:
- Send a WhatsApp message to the configured phone number.
- The message will be processed by the
whatsapp_in
Lambda function. - For text messages, the Bedrock Agent will be invoked directly.
- For audio messages, they will be transcribed using Amazon Transcribe before being sent to the Bedrock Agent through the
bedrock_agent
Lambda function. - For images, videos, and documents, they will be stored in S3 and analyzed by the Bedrock converse API through the
bedrock_agent
Lambda function. - The assistant's response will be sent back to the user via WhatsApp.
If you finish testing and want to clean the application, you just have to follow these two steps:
- Delete the files from the Amazon S3 bucket created in the deployment.
- Run this command in your terminal:
cdk destroy
- Automate workflows with WhatsApp using AWS End User Messaging Social
- Automate Workflows with WhatsApp using AWS End User Messaging Social
- WhatsApp Integration with AWS End User Messaging and Amazon Bedrock
See CONTRIBUTING for more information.
This library is licensed under the MIT-0 License. See the LICENSE file.