Agno v2.2.6 adds conversational workflows, a Notion toolkit, model-as-string syntax, and session state on run events.
$ git clone --branch v2.2.6 https://github.com/agno-agi/agno.git # already have the repo? check out this version: $ git checkout v2.2.6
from agno.agent import Agent agent = Agent(model="openai:gpt-5")
- ›Supports defining models as a string (e.g.,
openai:gpt-5) when configuring Agents and Teams, eliminating the need to instantiate a model object. - ›Adds session state access on
RunOutputandRunCompletedevents for Agents, and onTeamRunOutputandTeamRunCompletedevents for Teams. - ›New Notion Toolkit lets Agents read and interact with Notion pages.
- ›New Conversational Workflows capability gives Workflows a chat-like experience similar to Agent and Team, including session and history support.
- ›Adds input schema validation for Agents and Teams on AgentOS.
+3 moreshow less
- ›Extends
FileToolstoolkit with chunked reading of large files, partial updates to large files, and file deletion. - ›Adds reranker support to the Milvus vector database search operation, reordering results by relevance after initial vector search.
- ›All model implementations now cache and reuse HTTP clients (client persistence) to reduce connection overhead.