UNPKG

@hivetechs/hive-ai

Version:

Real-time streaming AI consensus platform with HTTP+SSE MCP integration for Claude Code, VS Code, Cursor, and Windsurf - powered by OpenRouter's unified API

26 lines 695 B
/** * Hive.AI Consensus Engine - Library Export * * Consensus pipeline functionality for npm package consumers */ export { runConsensusPipeline, validateConsensusPrerequisites } from '../tools/enhanced-consensus-engine.js'; export interface ConsensusPipelineResult { success: boolean; result?: string; error?: string; } export interface ValidationResult { valid: boolean; errors: string[]; } export interface ConsensusProfile { id: string; profile_name: string; generator_model: string; refiner_model: string; validator_model: string; curator_model: string; created_at: string; is_active: boolean; } //# sourceMappingURL=consensus.d.ts.map