UNPKG

@vfarcic/dot-ai

Version:

AI-powered development productivity platform that enhances software development workflows through intelligent automation and AI-driven assistance

25 lines 1.01 kB
/** * Recommendation Comparative Evaluator * * Compares multiple AI models on Kubernetes recommendation scenarios * Uses dynamic model inclusion based on available datasets * Follows reference-free comparative evaluation methodology */ import { BaseComparativeEvaluator } from './base-comparative.js'; export declare class RecommendationComparativeEvaluator extends BaseComparativeEvaluator { readonly name = "recommendation_comparative"; readonly description = "Compares multiple AI models on Kubernetes deployment recommendation scenarios"; protected readonly promptFileName = "recommendation-comparative.md"; protected readonly toolName = "recommend"; constructor(datasetDir?: string); /** * Get detailed breakdown of evaluation phases available */ getEvaluationPhases(): { phase: string; description: string; availableModels: string[]; scenarioCount: number; }[]; } //# sourceMappingURL=recommendation-comparative.d.ts.map