The component exposes two main methods:
AWS_Bedrock_IS.ConverseMethod – for direct, stateless requests to Bedrock models.
AWS_BedrockConverse_Agent.Converse_Agent – for managing multi-turn conversations with persistent context.
Methods
ConverseMethod
This method performs a single direct request to any supported Bedrock foundation model.
It is ideal for scenarios where you don’t need to maintain a conversation history or context.
Typical Use Case:
One-shot text generation or Q&A.
Structured prompts or reasoning requests.
Converse_Agent
This method runs an agent-style conversation, maintaining context across multiple turns.
It automatically stores and manages the message history between user and model, allowing for contextual understanding across requests.
Conversational chatbots.
AI assistants that need memory or dialogue context.