Interface EvalTestCaseWithDatasetLabel

interface EvalTestCaseWithDatasetLabel {
    input: AgentRequestContent<Record<string, any>>;
    label: string;
    metrics: EvalMetricResultMap;
    output: AgentResponse<Record<string, any>>;
    tags: EvalTestCaseTag;
}

Hierarchy (view full)

Properties

input: AgentRequestContent<Record<string, any>>
label: string
output: AgentResponse<Record<string, any>>