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

33 lines 865 B
/** * CLI Configuration for Hive.AI * * Provides configuration options for the CLI interface */ import { LogLevel } from './logging.js'; export declare const defaultConfig: { verbosity: LogLevel; showProviderErrors: boolean; formatOutput: boolean; showProgress: boolean; maxTopics: number; }; export declare let cliConfig: { verbosity: LogLevel; showProviderErrors: boolean; formatOutput: boolean; showProgress: boolean; maxTopics: number; }; /** * Set the CLI configuration */ export declare function setCliConfig(config: Partial<typeof defaultConfig>): void; /** * Get the current CLI configuration */ export declare function getCliConfig(): typeof cliConfig; /** * Parse verbosity level from string */ export declare function parseVerbosityLevel(level: string): LogLevel; //# sourceMappingURL=cli-config.d.ts.map