Helicone · Schema

FunctionCall

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
id string
name string
arguments object
View JSON Schema on GitHub

JSON Schema

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