Type Alias BaseEvalDataPoint
BaseEvalDataPoint: {
context?: unknown[];
input?: unknown;
output?: unknown;
reference?: unknown;
testCaseId: string;
traceIds?: string[];
}
Type Declaration
Optionalcontext?: unknown[]
Optionaloutput?: unknown
Optionalreference?: unknown
testCaseId: string
OptionaltraceIds?: string[]
Zod schema for an evaluation data point used in evaluator actions. Requires
testCaseIdto be present.