Interface EvalTestCaseWithDatasetLabel

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

Hierarchy (view full)

Properties

input: ConversationRequestContent<Record<string, any>>
label: string
output: ConversationResponse<Record<string, any>>