import honeyhive
from honeyhive.models import components
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.tools.create_tool(request=components.CreateToolRequest(
task='<value>',
name='<value>',
parameters={
'key': '<value>',
},
type=components.CreateToolRequestType.TOOL,
))
if res.object is not None:
# handle response
pass