Parea AI · Schema

BootstrapEvalFullResultSchema

Schema for BootstrapEvalFullResultSchema

LLMEvaluationObservabilityTestingPrompt ManagementAI EngineeringMachine LearningTracingExperimentationHuman Feedback

Properties

Name Type Description
stats object Bootstrapped eval stats
experiment_uuid string Experiment UUID
source_code string Bootstrapped eval source code
status object Bootstrapped eval status
output_target_pairs array Output target pairs
View JSON Schema on GitHub

JSON Schema

BootstrapEvalFullResultSchema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/parea/main/json-schema/BootstrapEvalFullResultSchema.json",
  "title": "BootstrapEvalFullResultSchema",
  "description": "Schema for BootstrapEvalFullResultSchema",
  "properties": {
    "stats": {
      "additionalProperties": {
        "type": "number"
      },
      "type": "object",
      "title": "Stats",
      "description": "Bootstrapped eval stats"
    },
    "experiment_uuid": {
      "type": "string",
      "title": "Experiment Uuid",
      "description": "Experiment UUID"
    },
    "source_code": {
      "title": "Source Code",
      "description": "Bootstrapped eval source code",
      "type": "string",
      "nullable": true
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BootstrappedEvalStatus"
        }
      ],
      "description": "Bootstrapped eval status"
    },
    "output_target_pairs": {
      "items": {
        "$ref": "#/components/schemas/OutputTargetPairSchema"
      },
      "type": "array",
      "title": "Output Target Pairs",
      "description": "Output target pairs",
      "default": []
    }
  },
  "type": "object"
}