UNPKG

codecrucible-synth

Version:

Production-Ready AI Development Platform with Multi-Voice Synthesis, Smithery MCP Integration, Enterprise Security, and Zero-Timeout Reliability

24 lines 663 B
/** * CLI Display Module * Handles all display and output formatting for the CLI */ import { SynthesisResult } from '../types.js'; export declare class CLIDisplay { /** * Display synthesis results with proper formatting */ static displayResults(synthesis: SynthesisResult, responses: any[]): void; /** * Show CLI help information */ static showHelp(): void; /** * Display model recommendations */ static showModelRecommendations(): Promise<void>; /** * Get performance indicator for a model */ static getModelPerformance(model: string): string; } //# sourceMappingURL=cli-display.d.ts.map