Implementing Multi-Agent Architecture Using Amazon Bedrock Models for Supervisor-Controlled Decision Making and Retry Mechanism #2384
Unanswered
VinuthaRaghavendra
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
I'm developing a multi-agent system for an automation project using Amazon Bedrock models, and I'm exploring ways to implement an architecture with the following agents:
Supervisor - Manages and coordinates the sequence of actions.
Action Agent - Executes specified actions using a Bedrock model.
Verification Agent - Uses a Bedrock model to verify action outcomes.
Retry Agent - Uses Bedrock model-based logic to determine if retries are needed.
Requirements:
The Supervisor agent will receive a sequence of actions to execute and needs to:
Process each action individually and dynamically determine which agent should handle the action (either Action agent, Verification, or Retry).
Capture the responses from each agent and, based on the response, decide if a retry is necessary before moving to the next action.
Continue executing the sequence of actions while ensuring each step is verified and retried if needed.
Challenges:
Structuring the Supervisor's decision-making to select the right agent using Bedrock models.
Coordinating responses across Bedrock model-powered agents, especially handling retry logic seamlessly.
Capturing and tracking each agent’s responses so that the Supervisor can make informed decisions on retries or progression.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions