GET
/
tools
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"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successfully retrieved the list of tools

The response is of type object[].