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
[ { "_id": "<string>", "task": "<string>", "name": "<string>", "description": "<string>", "parameters": {}, "tool_type": "function" } ]
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully retrieved the list of tools
The response is of type object[].
object[]
Was this page helpful?