Helicone · Schema

HeliconeEventTool

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
_type string
toolName string
input object
View JSON Schema on GitHub

JSON Schema

helicone-heliconeeventtool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HeliconeEventTool",
  "title": "HeliconeEventTool",
  "properties": {
    "_type": {
      "type": "string",
      "enum": [
        "tool"
      ],
      "nullable": false
    },
    "toolName": {
      "type": "string"
    },
    "input": {}
  },
  "required": [
    "_type",
    "toolName",
    "input"
  ],
  "type": "object",
  "additionalProperties": {}
}