Copy
Ask AI
"""
Research Team
=============
Demonstrates research team.
"""
from agno.agent.agent import Agent
from agno.models.openai import OpenAIChat
from agno.os.app import AgentOS
from agno.os.interfaces.agui.agui import AGUI
from agno.team.team import Team
from agno.tools.websearch import WebSearchTools
# ---------------------------------------------------------------------------
# Create Example
# ---------------------------------------------------------------------------
researcher = Agent(
name="researcher",
role="Research Assistant",
model=OpenAIChat(id="gpt-4o"),
instructions="You are a research assistant. Find information and provide detailed analysis.",
tools=[WebSearchTools()],
markdown=True,
)
writer = Agent(
name="writer",
role="Content Writer",
model=OpenAIChat(id="o4-mini"),
instructions="You are a content writer. Create well-structured content based on research.",
tools=[WebSearchTools()],
markdown=True,
)
research_team = Team(
members=[researcher, writer],
name="research_team",
instructions="""
You are a research team that helps users with research and content creation.
First, use the researcher to gather information, then use the writer to create content.
""",
show_members_responses=True,
get_member_information_tool=True,
add_member_tools_to_context=True,
add_history_to_context=True,
)
# Setup our AgentOS app
agent_os = AgentOS(
teams=[research_team],
interfaces=[AGUI(team=research_team)],
)
app = agent_os.get_app()
# ---------------------------------------------------------------------------
# Run Example
# ---------------------------------------------------------------------------
if __name__ == "__main__":
"""Run your AgentOS.
You can see the configuration and available apps at:
http://localhost:9001/config
Use Port 9001 for Dojo compatibility.
"""
agent_os.serve(app="research_team:app", reload=True, port=9001)
Run the Example
Copy
Ask AI
# Clone and setup repo
git clone https://github.com/agno-agi/agno.git
cd agno/cookbook/05_agent_os/interfaces/agui
# Create and activate virtual environment
./scripts/demo_setup.sh
source .venvs/demo/bin/activate
python research_team.py