interface EvalMetric {
    evaluate: ((input, response) => Promise<EvalMetricOutput>);
    label: string;
}

Properties

Properties

evaluate: ((input, response) => Promise<EvalMetricOutput>)

Type declaration

label: string