A CustomDataSourceConfig which specifies the schema of your item and optionally sample namespaces. The response schema defines the shape of the data that will be:

  • Used to define your testing criteria and
  • What data is required when creating a run
interface EvalCustomDataSourceConfig {
    schema: Record<string, unknown>;
    type: "custom";
}

Properties

Properties

schema: Record<string, unknown>

The json schema for the run data source items. Learn how to build JSON schemas here.

type: "custom"

The type of data source. Always custom.