cookbook/00_quickstart/data/agno_overview.md
Agno is a framework and runtime for building, running, and managing agent platforms.
Agno is model-agnostic. An agent combines a model with instructions, tools, and optional context such as knowledge or memory.
from agno.agent import Agent
from agno.models.google import Gemini
from agno.tools.yfinance import YFinanceTools
agent = Agent(
model=Gemini(id="gemini-3.6-flash"),
tools=[YFinanceTools()],
)
agent.print_response("What's AAPL's current price?", stream=True)
Agno applications can keep sessions, memory, knowledge, and traces in databases the application owner controls. Production deployments should use appropriate authentication, authorization, tenant isolation, and durable storage.
cookbook/00_quickstart/