Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
requests
pip install requests
from agno.agent import Agent from agno.tools.api import CustomApiTools agent = Agent( tools=[CustomApiTools(base_url="https://dog.ceo/api")], markdown=True, ) agent.print_response( '向以下两个不同端点发出 API 调用:/breeds/image/random 和 /breeds/list/all,分别获取随机的狗图片和狗品种列表。两个调用均使用 GET 方法。' )
base_url
str
None
username
password
api_key
headers
Dict[str, str]
{}
verify_ssl
bool
True
timeout
int
30
make_request