Learn more about Mintlify
Enter your email to receive updates about new features and product releases.
How agents work together in teams
from agno.team import Team
team = Team(
agents=[agent1, agent2, agent3],
instructions="Coordinate these agents to complete complex tasks"
)
team = Team(
agents=[researcher, writer],
share_member_interactions=True # Agents see each other's work
)
from agno.db.postgres import PostgresDb
team = Team(
agents=[agent1, agent2],
db=PostgresDb(),
add_history_to_context=True
)