Helicone · Schema

ExperimentScores

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
dataset object
hypothesis object
View JSON Schema on GitHub

JSON Schema

helicone-experimentscores-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExperimentScores",
  "title": "ExperimentScores",
  "properties": {
    "dataset": {
      "properties": {
        "scores": {
          "$ref": "#/components/schemas/Record_string.Score_"
        }
      },
      "required": [
        "scores"
      ],
      "type": "object"
    },
    "hypothesis": {
      "properties": {
        "scores": {
          "$ref": "#/components/schemas/Record_string.Score_"
        },
        "runsCount": {
          "type": "number",
          "format": "double"
        }
      },
      "required": [
        "scores",
        "runsCount"
      ],
      "type": "object"
    }
  },
  "required": [
    "dataset",
    "hypothesis"
  ],
  "type": "object",
  "additionalProperties": false
}