adding scripts for agentcore features; jupyter notebooks moved to workshops; reorganising folders
Customer Support Agent
Important
The examples provided in this repository are for experimental and educational purposes only. They demonstrate concepts and techniques but are not intended for direct use in production environments.
This is a customer support agent implementation using Amazon Bedrock AgentCore framework. The system provides an AI-powered customer support interface with capabilities for warranty checking, customer profile management, Google calendar integration, and Amazon Bedrock Knowledge Base retrieval.
Table of Contents
- Customer Support Agent
Prerequisites
AWS Account Setup
-
AWS Account: You need an active AWS account with appropriate permissions
-
AWS CLI: Install and configure AWS CLI with your credentials
aws configure -
IAM Permissions: Required IAM permissions for deployment and operation
Your AWS user or role needs the following permissions to successfully deploy and run this sample:
{ "Version": "2012-10-17", "Statement": [ { "Sid": "AllowS3VectorOperations", "Effect": "Allow", "Action": [ "s3vectors:*" ], "Resource": "*" }, { "Sid": "AllowSSMParameterOperations", "Effect": "Allow", "Action": [ "ssm:PutParameter", "ssm:GetParameter", "ssm:GetParameters", "ssm:GetParametersByPath", "ssm:DeleteParameter", "ssm:DeleteParameters", "ssm:DescribeParameters", "ssm:AddTagsToResource" ], "Resource": "*" }, { "Sid": "AllowDynamoDBOperations", "Effect": "Allow", "Action": [ "dynamodb:DescribeTable", "dynamodb:CreateTable", "dynamodb:DeleteTable", "dynamodb:UpdateTable", "dynamodb:PutItem", "dynamodb:GetItem", "dynamodb:UpdateItem", "dynamodb:DeleteItem", "dynamodb:Query", "dynamodb:Scan", "dynamodb:BatchGetItem", "dynamodb:BatchWriteItem", "dynamodb:DescribeTimeToLive", "dynamodb:UpdateTimeToLive", "dynamodb:TagResource", "dynamodb:UntagResource", "dynamodb:ListTagsOfResource", "dynamodb:UpdateContinuousBackups", "dynamodb:DescribeContinuousBackups" ], "Resource": "*" }, { "Sid": "AllowCognitoOperations", "Effect": "Allow", "Action": [ "cognito-idp:CreateUserPool", "cognito-idp:DeleteUserPool", "cognito-idp:DescribeUserPool", "cognito-idp:UpdateUserPool", "cognito-idp:CreateUserPoolClient", "cognito-idp:DeleteUserPoolClient", "cognito-idp:DescribeUserPoolClient", "cognito-idp:UpdateUserPoolClient", "cognito-idp:CreateGroup", "cognito-idp:DeleteGroup", "cognito-idp:GetGroup", "cognito-idp:UpdateGroup", "cognito-idp:ListGroups", "cognito-idp:CreateResourceServer", "cognito-idp:DeleteResourceServer", "cognito-idp:DescribeResourceServer", "cognito-idp:UpdateResourceServer", "cognito-idp:SetUserPoolMfaConfig", "cognito-idp:TagResource", "cognito-idp:UntagResource", "cognito-idp:ListTagsForResource" ], "Resource": "*" } ] }Additional Permissions: Consider adding the
AmazonBedrockFullAccessmanaged policy for complete Amazon Bedrock access.Note: The permissions above use
"Resource": "*"for simplicity. In production environments, you should scope these down to specific resources following the principle of least privilege. -
Bedrock Model Access: Enable access to Amazon Bedrock Anthropic Claude 4.0 models in your AWS region
- Navigate to Amazon Bedrock Console
- Go to "Model access" and request access to:
- Anthropic Claude 4.0 Sonnet model
- Anthropic Claude 3.5 Haiku model
- Bedrock Model Access Guide
-
Python 3.10+: Required for running the application
-
uv: Modern Python package installer and resolver
curl -LsSf https://astral.sh/uv/install.sh | sh -
Create OAuth 2.0 credentials for calendar access : For Google Calendar integration
- Follow Google OAuth Setup
Deploy
-
Create infrastructure
# Set AWS region (default is us-east-1) export AWS_DEFAULT_REGION=us-east-1 # Install dependencies using uv uv sync source .venv/bin/activate chmod +x scripts/prereq.sh ./scripts/prereq.sh chmod +x scripts/list_ssm_parameters.sh ./scripts/list_ssm_parameters.shNote
The deployment defaults to
us-east-1region. To deploy to a different region, set theAWS_DEFAULT_REGIONenvironment variable before running the scripts. For example, to deploy tous-west-2:export AWS_DEFAULT_REGION=us-west-2Caution
Please prefix all the resource name with
customersupport. -
Create Agentcore Gateway
uv run python scripts/agentcore_gateway.py create --name customersupport-gw -
Setup Agentcore Identity
- Setup Cognito Credential Provider
uv run python scripts/cognito_credentials_provider.py create --name customersupport-gateways uv run python test/test_gateway.py --prompt "Check warranty with serial number MNO33333333"- Setup Google Credential Provider
Follow instructions to setup Google Credentials.
uv run python scripts/google_credentials_provider.py create --name customersupport-google-calendar uv run python test/test_google_tool.py -
Create Memory
uv run python scripts/agentcore_memory.py create --name customersupport uv run python test/test_memory.py load-conversation uv run python test/test_memory.py load-prompt "My preference of gaming console is V5 Pro" uv run python test/test_memory.py list-memory -
Setup Agent Runtime
Caution
Please ensure the name of the agent starts with
customersupport.
agentcore configure --entrypoint main.py -er arn:aws:iam::<Account-Id>:role/<Role> --name customersupport<AgentName>
Use ./scripts/list_ssm_parameters.sh to fill:
Role = ValueOf(/app/customersupport/agentcore/runtime_iam_role)OAuth Discovery URL = ValueOf(/app/customersupport/agentcore/cognito_discovery_url)OAuth client id = ValueOf(/app/customersupport/agentcore/web_client_id).
Caution
Please make sure to delete
.agentcore.yamlbefore running agentcore launch.
rm .agentcore.yaml
agentcore launch
uv run python test/test_agent.py customersupport<AgentName> -p "Hi"
- Local Host Streamlit UI
Caution
Streamlit app should only run on port
8501.
uv run streamlit run app.py --server.port 8501 -- --agent=customersupport<AgentName>
Sample Queries
-
I have a Gaming Console Pro device , I want to check my warranty status, warranty serial number is MNO33333333.
-
What are the warranty support guidelines ?
-
What’s my agenda for today?
-
Can you create an event to setup call to renew warranty?
-
I have overheating issues with my device, help me debug.
Scripts
Amazon Bedrock AgentCore Gateway
Create Amazon Bedrock AgentCore Gateway
uv run python scripts/agentcore_gateway.py create --name my-gateway
uv run python scripts/agentcore_gateway.py create --name my-gateway --api-spec-file custom/path.json
Delete Amazon Bedrock AgentCore Gateway
# Delete gateway (reads from gateway.config automatically)
uv run python scripts/agentcore_gateway.py delete
# Delete with confirmation skip
uv run python scripts/agentcore_gateway.py delete --confirm
Amazon Bedrock AgentCore Memory
Create Amazon Bedrock AgentCore Memory
uv run python scripts/agentcore_memory.py create --name MyMemory
uv run python scripts/agentcore_memory.py create --name MyMemory --event-expiry-days 60
Delete Amazon Bedrock AgentCore Memory
# Delete memory (reads from SSM automatically)
uv run python scripts/agentcore_memory.py delete
# Delete with confirmation skip
uv run python scripts/agentcore_memory.py delete --confirm
Cognito Credentials Provider
Create Cognito Credentials Provider
uv run python scripts/cognito_credentials_provider.py create --name customersupport-gateways
Delete Cognito Credentials Provider
# Delete provider (reads name from SSM automatically)
uv run python scripts/cognito_credentials_provider.py delete
# Delete specific provider by name
uv run python scripts/cognito_credentials_provider.py delete --name customersupport-gateways
# Delete with confirmation skip
uv run python scripts/cognito_credentials_provider.py delete --confirm
Google Credentials Provider
Create Credentials Provider
uv run python scripts/google_credentials_provider.py create --name customersupport-google-calendar
uv run python scripts/google_credentials_provider.py create --name my-provider --credentials-file /path/to/credentials.json
Delete Credentials Provider
# Delete provider (reads name from SSM automatically)
uv run python scripts/google_credentials_provider.py delete
# Delete specific provider by name
uv run python scripts/google_credentials_provider.py delete --name customersupport-google-calendar
# Delete with confirmation skip
uv run python scripts/google_credentials_provider.py delete --confirm
Agent Runtime
Delete Agent Runtime
# Delete specific agent runtime by name
uv run python scripts/agentcore_agent_runtime.py customersupport
# Preview what would be deleted without actually deleting
uv run python scripts/agentcore_agent_runtime.py --dry-run customersupport
# Delete any agent runtime by name
uv run python scripts/agentcore_agent_runtime.py <agent-name>
Cleanup
chmod +x scripts/cleanup.sh
./scripts/cleanup.sh
uv run python scripts/google_credentials_provider.py delete
uv run python scripts/cognito_credentials_provider.py delete
uv run python scripts/agentcore_memory.py delete
uv run python scripts/agentcore_gateway.py delete
uv run python scripts/agentcore_agent_runtime.py customersupport<AgentName>
rm .agentcore.yaml
rm .bedrock_agentcore.yaml
🤝 Contributing
We welcome contributions! Please see our Contributing Guidelines for details on:
- Adding new samples
- Improving existing examples
- Reporting issues
- Suggesting enhancements
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🆘 Support
- Issues: Report bugs or request features via GitHub Issues
- Documentation: Check individual folder READMEs for specific guidance
🔄 Updates
This repository is actively maintained and updated with new capabilities and examples. Watch the repository to stay updated with the latest additions.


