UNPKG

codecrucible-synth

Version:

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

8 lines (7 loc) 391 B
export interface VoiceArchetypeSystemInterface { getVoice(name: string): any; generateMultiVoiceSolutions(voices: string[], prompt: string, context?: any): Promise<any>; synthesizeVoiceResponses(responses: Record<string, unknown>[]): Promise<any>; recommendVoices(prompt: string, maxVoices?: number): string[]; getVoicePerspective(voiceId: string, prompt: string): Promise<any>; }