POSThttps://api.humanloop.com/v5/tools
Body Parameters
      • key
        value
      • key
        value
      • key
        value
View in API Reference
Request
$curl -X POST https://api.humanloop.com/v5/tools \
> -H "X-API-KEY: " \
> -H "Content-Type: application/json" \
> -d '{
> "path": "math-tool",
> "function": {
> "name": "multiply",
> "description": "Multiply two numbers",
> "parameters": {
> "type": "object",
> "properties": {
> "a": {
> "type": "number"
> },
> "b": {
> "type": "number"
> }
> },
> "required": [
> "a",
> "b"
> ]
> }
> },
> "commit_message": "Initial commit"
>}'
Response