Helicone · Schema

NewExperimentParams

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
datasetId string
promptVersion string
model string
providerKeyId string
meta object
View JSON Schema on GitHub

JSON Schema

helicone-newexperimentparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NewExperimentParams",
  "title": "NewExperimentParams",
  "properties": {
    "datasetId": {
      "type": "string"
    },
    "promptVersion": {
      "type": "string"
    },
    "model": {
      "type": "string"
    },
    "providerKeyId": {
      "type": "string"
    },
    "meta": {}
  },
  "required": [
    "datasetId",
    "promptVersion",
    "model",
    "providerKeyId"
  ],
  "type": "object",
  "additionalProperties": false
}