UNPKG

@mastra/core

Version:

Mastra is a framework for building AI-powered applications and agents with a modern TypeScript stack.

8 lines 238 B
export interface MetricResult { score: number; info?: Record<string, any>; } export declare abstract class Metric { abstract measure(input: string, output: string): Promise<MetricResult>; } //# sourceMappingURL=metric.d.ts.map