@mastra/core
Version:
The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.
15 lines • 620 B
TypeScript
import type { MastraScorerEntry } from './base';
import type { ScoringEntityType, ScoringSource } from './types';
export declare function runScorer({ runId, scorerId, scorerObject, input, output, runtimeContext, entity, structuredOutput, source, entityType, }: {
scorerId: string;
scorerObject: MastraScorerEntry;
runId: string;
input: Record<string, any>[];
output: Record<string, any>;
runtimeContext: Record<string, any>;
entity: Record<string, any>;
structuredOutput: boolean;
source: ScoringSource;
entityType: ScoringEntityType;
}): void;
//# sourceMappingURL=hooks.d.ts.map