@mastra/core
Version:
The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.
8 lines • 399 B
TypeScript
import type { MastraLanguageModel } from '../../agent';
import type { RelevanceScoreProvider } from '../relevance-score-provider';
export declare class MastraAgentRelevanceScorer implements RelevanceScoreProvider {
private agent;
constructor(name: string, model: MastraLanguageModel);
getRelevanceScore(query: string, text: string): Promise<number>;
}
//# sourceMappingURL=index.d.ts.map