Introduction
Build autonomous multi-agent systems with Agent Teams
Reliability is one of the biggest challenges in building agentic systems, for this reason, we recommend that Agents have a narrow scope and a small number of tools.
However, real-world problems often span multiple domains and require diverse skill sets, meaning that a single agent is not able to solve the problem reliably.
Agent Teams combine multiple specialized agents, each focused on a different aspect of the problem, to solve complex problems in an autonomous manner.
What are Agent Teams?
Agent Teams are a collection of Agents (or other sub-teams) that work together to accomplish tasks. Agent Teams can either “coordinate”, “collaborate” or “route” to solve a task.
- Route Mode: The Team Leader routes the user’s request to the most appropriate team member based on the content of the request.
- Coordinate Mode: The Team Leader delegates tasks to team members and synthesizes their outputs into a cohesive response.
- Collaborate Mode: All team members are given the same task and the team coordinator synthesizes their outputs into a cohesive response.
Example
Let’s walk through a simple example where we use different models to answer questions in different languages. The team consists of three specialized agents and the team leader routes the user’s question to the appropriate language agent.
Team Context
Agent Teams maintain a shared context that is updated agentically (i.e. by the team leader) and is sent to team members if needed.
Agentic Context is critical for effective information sharing and collaboration between agents and the quality of the team’s responses depends on how well the team leader manages the shared context. This means we should use better models for the team leader to ensure the quality of the team’s responses.
The tasks and responses of team members are automatically added to the team context, but Agentic Context needs to be enabled by the developer.
Enable Agentic Context
To enable the Team leader to maintain Agentic Context, set enable_agentic_context=True
.
This will allow the team leader to maintain and update the team context during the run.
Team Member Interactions
Agent Teams can share interactions between members, allowing agents to learn from each other’s outputs:
Member interactions are automatically added to the team context after communication with members
Team Memory and History
Teams can maintain memory of previous interactions, enabling contextual awareness:
Running Teams
Teams support both synchronous and asynchronous execution, with optional streaming:
Examples
Content Team
Let’s walk through another example where we use two specialized agents to write a blog post. The team leader coordinates the agents to write a blog post.
Research Team
Here’s an example of a research team that combines multiple specialized agents:
Create HackerNews Team
Create a file hackernews_team.py
Run the team
Install libraries
Run the team