from agno.agent import Agentfrom agno.tools.webtools import WebToolsagent = 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")