Helicone · Schema

EvaluatorConfig

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
evaluator_code_template string
evaluator_llm_template string
evaluator_scoring_type string
View JSON Schema on GitHub

JSON Schema

helicone-evaluatorconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EvaluatorConfig",
  "title": "EvaluatorConfig",
  "properties": {
    "evaluator_code_template": {
      "type": "string"
    },
    "evaluator_llm_template": {
      "type": "string"
    },
    "evaluator_scoring_type": {
      "type": "string"
    }
  },
  "required": [
    "evaluator_scoring_type"
  ],
  "type": "object"
}