Skip to content

Documentation Fixes #256

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions docs/src/content/docs/agents/built-in/supervisor-agent.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ You can use the SupervisorAgent directly, bypassing the classifier, when you wan
```python
# Create and configure SupervisorAgent
supervisor_agent = SupervisorAgent(SupervisorAgentOptions(
name: "SupervisorAgent",
description: "You are a supervisor agent that manages the team of agents for travel purposes",
lead_agent=BedrockLLMAgent(BedrockLLMAgentOptions(
name="Support Team Lead",
description="Coordinates support inquiries"
Expand Down Expand Up @@ -156,8 +154,6 @@ The SupervisorAgent can also be integrated into a larger system using the classi

# Add a SupervisorAgent for complex support tasks
orchestrator.add_agent(SupervisorAgent(SupervisorAgentOptions(
name: "SupervisorAgent",
description: "You are a supervisor agent that manages the team of agents for product development purposes",
lead_agent=BedrockLLMAgent(BedrockLLMAgentOptions(
name="Support Team",
description="Coordinates support inquiries requiring multiple specialists"
Expand Down Expand Up @@ -647,4 +643,4 @@ Here's a complete example showing how to use the SupervisorAgent in a typical sc
- Performance depends on slowest agent in parallel operations


By leveraging the SupervisorAgent, you can create sophisticated multi-agent systems with coordinated responses, maintained context, and efficient parallel processing. The agent's flexible architecture allows for customization while providing robust built-in capabilities for common coordination tasks.
By leveraging the SupervisorAgent, you can create sophisticated multi-agent systems with coordinated responses, maintained context, and efficient parallel processing. The agent's flexible architecture allows for customization while providing robust built-in capabilities for common coordination tasks.
1 change: 1 addition & 0 deletions docs/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ import { Badge } from '@astrojs/starlight/components';
- [Bedrock Translator Agent](/multi-agent-orchestrator/agents/built-in/bedrock-translator-agent)
- [Comprehend Filter Agent](/multi-agent-orchestrator/agents/built-in/comprehend-filter-agent)
- [Chain Agent](/multi-agent-orchestrator/agents/built-in/chain-agent)

Learn how to [create your own custom agents](/multi-agent-orchestrator/agents/custom-agents).
</Card>
</CardGrid>
Expand Down