Skip to main content
Agents that do real work. Each example demonstrates knowledge retrieval, multi-tool orchestration, structured output, or multimodal processing.
from agno.agent import Agent
from agno.models.openai import OpenAIResponses
from agno.tools.yfinance import YFinanceTools

agent = Agent(
    model=OpenAIResponses(id="gpt-5.2"),
    tools=[YFinanceTools(stock_price=True, analyst_recommendations=True)],
    instructions=["Use tables to display data"],
    markdown=True,
)

agent.print_response("What's the outlook for NVDA?", stream=True)

Knowledge & RAG

Agents that search, retrieve, and reason over knowledge bases.

Research & Analysis

Multi-tool agents for competitive intelligence and due diligence.

Multimodal

Agents that process audio, video, and generate speech.

Integrations

Agents connecting to external platforms and protocols.