Use Seltz tools in Agno agents.
pip install seltz agno openai python-dotenv
from agno.agent import Agent from agno.models.openai import OpenAIResponses from agno.tools.seltz import SeltzTools from dotenv import load_dotenv # --------------------------------------------------------------------------- # Create Agent # --------------------------------------------------------------------------- load_dotenv() agent = Agent( model=OpenAIResponses(id="gpt-5.2"), tools=[SeltzTools(show_results=True)], markdown=True, ) # --------------------------------------------------------------------------- # Run Agent # --------------------------------------------------------------------------- if __name__ == "__main__": agent.print_response("Search for current AI safety reports", markdown=True)
# Clone and setup repo git clone https://github.com/agno-agi/agno.git cd agno/cookbook/91_tools # Create and activate virtual environment ./scripts/demo_setup.sh source .venvs/demo/bin/activate python seltz_tools.py
Was this page helpful?