Helicone · Schema

Tool

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
name string
description string
parameters object
strict boolean
View JSON Schema on GitHub

JSON Schema

helicone-tool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Tool",
  "title": "Tool",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "parameters": {
      "$ref": "#/components/schemas/Record_string.any_"
    },
    "strict": {
      "type": "boolean"
    }
  },
  "required": [
    "name"
  ],
  "type": "object",
  "additionalProperties": false
}