Helicone · Schema

TestInput

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
promptTemplate string
inputs object
outputBody string
inputBody string
View JSON Schema on GitHub

JSON Schema

helicone-testinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TestInput",
  "title": "TestInput",
  "properties": {
    "promptTemplate": {
      "type": "string"
    },
    "inputs": {
      "properties": {
        "autoInputs": {
          "$ref": "#/components/schemas/Record_string.string_"
        },
        "inputs": {
          "$ref": "#/components/schemas/Record_string.string_"
        }
      },
      "required": [
        "inputs"
      ],
      "type": "object"
    },
    "outputBody": {
      "type": "string"
    },
    "inputBody": {
      "type": "string"
    }
  },
  "required": [
    "inputs",
    "outputBody",
    "inputBody"
  ],
  "type": "object"
}