Agno v2.4.5 adds Seltz Search toolkit and a new parameter to suppress knowledge search instructions in system prompts.
$ git clone --branch v2.4.5 https://github.com/agno-agi/agno.git # already have the repo? check out this version: $ git checkout v2.4.5
from agno.agent import Agent
agent = Agent(
knowledge=my_knowledge_base,
add_search_knowledge_instructions=False,
)
agent.run('What are our internal policies on data retention?') from agno.agent import Agent
from agno.tools.seltz import SeltzTools
agent = Agent(
tools=[SeltzTools()],
)
agent.run('Find recent research on LLM reasoning benchmarks.') - ›Adds
add_search_knowledge_instructionsparameter to Agent and Team classes to control whether knowledge search instructions are injected into the system prompt. - ›New
SeltzToolstoolkit integrating Seltz Search as a tool source for agents.
1 more release in this issue · 2026-01-26
Agno v2.4.4 adds UnsplashTools image search, Moonshot model provider, and a new external_execution_silent tool decorator param.
$ git clone --branch v2.4.4 https://github.com/agno-agi/agno.git # already have the repo? check out this version: $ git checkout v2.4.4
from agno.tools.unsplash import UnsplashTools agent = Agent(tools=[UnsplashTools()], ...)
- ›Adds
external_execution_silentparameter to the tool decorator to suppress placeholder strings from run response content during external tool execution. - ›Adds
UnsplashToolstoolkit for searching and retrieving royalty-free images via the Unsplash API. - ›Adds Moonshot (moonshot.ai) as a new model provider.