Documentation Index
Fetch the complete documentation index at: https://spacesail.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Code
cookbook/tools/webtools.py
from agno.agent import Agent
from agno.tools.webtools import WebTools
agent = Agent(
instructions=[
"You are a web utility assistant that helps with URL operations",
"Expand shortened URLs to show their final destinations",
"Help users understand where links lead before visiting them",
],
tools=[WebTools()],
markdown=True,
)
agent.print_response("Expand this shortened URL: https://bit.ly/3example")
Usage
Create a virtual environment
Open the Terminal and create a python virtual environment.python3 -m venv .venv
source .venv/bin/activate
Set your API key
export OPENAI_API_KEY=xxx
Install libraries
pip install -U httpx openai agno
Run Agent
python cookbook/tools/webtools.py