Python
import honeyhive s = honeyhive.HoneyHive( bearer_auth="<YOUR_BEARER_TOKEN_HERE>", ) res = s.tools.get_tools() if res.tools is not None: # handle response pass
[ { "task": "<string>", "name": "<string>", "parameters": {}, "tool_type": "function", "_id": "<string>", "description": "<string>" } ]
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully retrieved the list of tools
Name of the project associated with this tool
These can be function call params or plugin call params
function
tool
Was this page helpful?