Agno (formerly Phidata)

2.5.10 · active · verified Tue Mar 24

Open-source framework for building multi-modal AI agents with memory, knowledge, tools, and reasoning. Renamed from Phidata to Agno in January 2025. Complete namespace change from phi.* to agno.*. phidata package still exists on PyPI (2.7.10) but is legacy — new development on agno only. Current version: agno 2.5.10 (Mar 2026).

Warnings

Install

Imports

Quickstart

Minimal Agno agent using OpenAI. Current agno 2.x API.

# pip install agno openai
from agno.agent import Agent
from agno.models.openai import OpenAIChat
import os

agent = Agent(
    model=OpenAIChat(id='gpt-4o'),
    description='You are a helpful assistant.',
    markdown=True
)

agent.print_response('Explain quantum computing in 2 sentences.')

view raw JSON →