from agno.agent import Agentfrom agno.tools.api import CustomApiToolsagent = Agent( tools=[CustomApiTools(base_url="https://dog.ceo/api")], markdown=True,)agent.print_response( 'Make API calls to the following two different endpoints: /breeds/image/random and /breeds/list/all to get a random dog image and list of dog breeds respectively. Use GET method for both calls.')