from agno.agent import Agentfrom agno.models.openai import OpenAIChatfrom agno.team import Teamfrom agno.tools.duckduckgo import DuckDuckGoTools# Create individual specialized agentsresearcher = Agent( name="Researcher", role="Expert at finding information", tools=[DuckDuckGoTools()], model=OpenAIChat(id="gpt-5-mini"),)writer = Agent( name="Writer", role="Expert at writing clear, engaging content", model=OpenAIChat(id="gpt-5-mini"),)# Create a team with these agentscontent_team = Team( name="Content Team", members=[researcher, writer], instructions="You are a team of researchers and writers that work together to create high-quality content.", model=OpenAIChat(id="gpt-5-mini"), show_members_responses=True,)# Run the team with a taskcontent_team.print_response("Create a short article about quantum computing")