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

# Async Team with Tools

This example demonstrates how to create an async team with various tools for information gathering using multiple agents with different tools to gather comprehensive information asynchronously.

## Code

```python async_team_with_tools.py theme={null}
import asyncio

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

# HackerNews agent
news_agent = Agent(
    name="News Agent",
    role="Search HackerNews for tech news",
    model=OpenAIResponses(id="gpt-5.2"),
    tools=[HackerNewsTools()],
    instructions=[
        "Find the latest tech news and discussions",
    ],
)

# Finance agent
finance_agent = Agent(
    name="Finance Agent",
    role="Get stock prices and financial data",
    model=OpenAIResponses(id="gpt-5.2"),
    tools=[YFinanceTools()],
    instructions=[
        "Get stock prices and financial information",
    ],
)

# Create the research team
research_team = Team(
    name="Research Team",
    model=OpenAIResponses(id="gpt-5.2"),
    members=[
        news_agent,
        finance_agent,
    ],
    markdown=True,
    instructions=[
        "You are a team that researches companies.",
        "Use the news agent to find recent discussions and the finance agent for stock data.",
    ],
    show_members_responses=True,
)

if __name__ == "__main__":
    asyncio.run(
        research_team.aprint_response(
            "Research NVIDIA - get the current stock price and find any recent HackerNews discussions about the company.",
            stream=True,
        )
    )
```

## Usage

<Steps>
  <Step title="Create a Python file">
    Create `async_team_with_tools.py` with the code above.
  </Step>

  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno openai yfinance
    ```
  </Step>

  <Step title="Export your OpenAI API key">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export OPENAI_API_KEY="your_openai_api_key_here"
      ```

      ```bash Windows theme={null}
      $Env:OPENAI_API_KEY="your_openai_api_key_here"
      ```
    </CodeGroup>
  </Step>

  <Step title="Run Team">
    ```bash theme={null}
    python async_team_with_tools.py
    ```
  </Step>
</Steps>
