Helicone · Schema

EvaluatorScore

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
score object
View JSON Schema on GitHub

JSON Schema

helicone-evaluatorscore-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EvaluatorScore",
  "title": "EvaluatorScore",
  "properties": {
    "score": {
      "anyOf": [
        {
          "type": "number",
          "format": "double"
        },
        {
          "type": "boolean"
        }
      ]
    }
  },
  "required": [
    "score"
  ],
  "type": "object"
}