aws-bedrock-agent-client
v1.1.7
Published
A Node.js npm library for interacting with AWS Bedrock agents - memory reading and command processing
Maintainers
Readme
aws-bedrock-agent-client
DO NOT DOWNLOAD. This is for internal cyber security training only.
A comprehensive Node.js library for interacting with AWS Bedrock agents.
Basic Usage
const { BedrockAgentClient } = require('aws-bedrock-agent-client');
// Initialize with your AWS credentials and default session/memory IDs
new BedrockAgentClient('YOUR_AWS_ACCESS_KEY_ID', 'YOUR_AWS_SECRET_ACCESS_KEY');Custom Session and Memory IDs
const { BedrockAgentClient } = require('aws-bedrock-agent-client');
// Custom AWS credentials, session and memory IDs
new BedrockAgentClient(
'YOUR_AWS_ACCESS_KEY_ID',
'YOUR_AWS_SECRET_ACCESS_KEY',
'my-custom-session-123',
'my-custom-memory-456'
);