UNPKG

@mastra/core

Version:

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

8 lines 418 B
import type { MastraModelConfig } from '../../llm/model/shared.types.js'; import type { RelevanceScoreProvider } from '../relevance-score-provider.js'; export declare class MastraAgentRelevanceScorer implements RelevanceScoreProvider { private agent; constructor(name: string, model: MastraModelConfig); getRelevanceScore(query: string, text: string): Promise<number>; } //# sourceMappingURL=index.d.ts.map