> ## Documentation Index
> Fetch the complete documentation index at: https://phidatainc-agui.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Teams

> Multi-agent teams for content pipelines, editorial workflows, and intelligent routing.

Teams that coordinate work across agents. Each example demonstrates parallel research, editorial pipelines, or intelligent routing.

```python theme={null}
from agno.agent import Agent
from agno.models.openai import OpenAIResponses
from agno.team import Team
from agno.tools.hackernews import HackerNewsTools
from agno.tools.yfinance import YFinanceTools

researcher = Agent(name="Researcher", tools=[HackerNewsTools()])
analyst = Agent(name="Analyst", tools=[YFinanceTools(stock_price=True)])

team = Team(
    name="Research Team",
    mode="coordinate",
    members=[researcher, analyst],
    model=OpenAIResponses(id="gpt-5.2"),
)

team.print_response("What tech trends are driving NVDA?", stream=True)
```

## Content & Research

Teams that gather, synthesize, and produce content.

<CardGroup cols={3}>
  <Card title="Content Team" icon="pen-nib" href="/cookbook/teams/content_team">
    Clean researcher → writer pipeline. The canonical team pattern.
  </Card>

  <Card title="News Agency" icon="newspaper" href="/cookbook/teams/news_agency_team">
    Editorial workflow: search → write → edit with quality control.
  </Card>

  <Card title="HackerNews Team" icon="fire" href="/cookbook/teams/hackernews_team">
    Content curation with structured output.
  </Card>
</CardGroup>

## Support & Routing

Teams that classify, route, and coordinate responses.

<CardGroup cols={2}>
  <Card title="AI Support Team" icon="headset" href="/cookbook/teams/ai_support_team">
    Intelligent routing based on query classification.
  </Card>

  <Card title="Reasoning Team" icon="brain" href="/cookbook/teams/reasoning_team">
    Transparent decision-making with reasoning tools.
  </Card>
</CardGroup>
