from agno.agent import Agentfrom agno.tools.webex import WebexToolsagent = Agent( name="Webex Assistant", tools=[WebexTools()], description="You are a Webex assistant that can send messages and manage spaces.", instructions=[ "You can help users by:", "- Listing available Webex spaces", "- Sending messages to spaces", "Always confirm the space exists before sending messages.", ], show_tool_calls=True, markdown=True,)# List all spaces in Webexagent.print_response("List all spaces on our Webex", markdown=True)# Send a message to a Space in Webexagent.print_response( "Send a funny ice-breaking message to the webex Welcome space", markdown=True)