/** * @file Answer relevancy scorer * Evaluates how relevant the AI response is to the user query */ import type { LLMScorerConfig, ScoreResult, ScorerInput } from "../../../types/index.js"; import { BaseLLMScorer } from "./baseLLMScorer.js"; export declare class AnswerRelevancyScorer extends BaseLLMScorer { constructor(config?: Partial); generatePrompt(input: ScorerInput): string; parseResponse(response: string, _input: ScorerInput): Partial; } export declare function createAnswerRelevancyScorer(config?: Partial): Promise;