@mastra/core
Version:
The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.
13 lines • 521 B
TypeScript
import { MastraBase } from '../../../base';
import type { EvalRow, PaginationArgs, PaginationInfo } from '../../types';
export declare abstract class LegacyEvalsStorage extends MastraBase {
constructor();
abstract getEvals(options: {
agentName?: string;
type?: 'test' | 'live';
} & PaginationArgs): Promise<PaginationInfo & {
evals: EvalRow[];
}>;
abstract getEvalsByAgentName(agentName: string, type?: 'test' | 'live'): Promise<EvalRow[]>;
}
//# sourceMappingURL=base.d.ts.map