@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
41 lines • 1.14 kB
TypeScript
/**
* Bridge Between Wizard System and SOURCE_OF_TRUTH Consensus
*
* The wizard creates profiles using enhanced-pipeline-config (better-sqlite3).
* The consensus engine needs profiles in SOURCE_OF_TRUTH format (sqlite3).
* This bridge syncs between the two systems seamlessly.
*/
export interface WizardProfile {
id: string;
name: string;
is_default: boolean;
generator: {
provider_name: string;
model: string;
temperature?: number;
};
refiner: {
provider_name: string;
model: string;
temperature?: number;
};
validator: {
provider_name: string;
model: string;
temperature?: number;
};
curator?: {
provider_name: string;
model: string;
temperature?: number;
};
}
/**
* Sync wizard profiles to SOURCE_OF_TRUTH consensus profiles
*/
export declare function syncWizardProfilesToConsensus(): Promise<void>;
/**
* Get active wizard profile and ensure it exists in consensus system
*/
export declare function ensureActiveProfile(): Promise<boolean>;
//# sourceMappingURL=consensus-bridge.d.ts.map