/** * Multi-Model Consensus Module * * Provides multi-model consensus for certification findings. * Run the same agent across Claude, GPT, and Gemini to identify * inter-model disagreements - harder to game than intra-model cross-verification. * * @module multimodel */ export type { ModelConfig, ModelRunResult, FindingMatch, ModelDisagreement, MultiModelConsensus, MultiModelRunOptions, MultiModelConfig, MultiModelSummary, } from "./types.js"; export { calculateFindingSimilarity, calculateStringSimilarity, matchFindings, findDisagreements, calculateFleissKappa, mergeFindings, calculateMultiModelConsensus, generateConsensusSummary, } from "./consensus.js"; export { DEFAULT_MODELS, MultiModelRunner, getRunner, resetRunner, formatProvider, } from "./runner.js"; export { recordModelRun, getLeaderboard, getRankedModels, getRecommendedModel, formatLeaderboardAsMarkdown, clearLeaderboard, type ModelRunMetrics, type ModelStats, type LeaderboardData, } from "./leaderboard.js"; //# sourceMappingURL=index.d.ts.map