UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio

25 lines 1.17 kB
import { startVoiceServer } from "../../lib/server/voice/voiceServerApp.js"; import { configureVoiceServerEnvironment } from "../../lib/server/voice/voiceWebSocketHandler.js"; /** * @deprecated Use `neurolink serve voice` instead. This top-level alias is * kept for one release for backwards compatibility and will be removed in a * future version. The voice server is now subsumed under the existing * `serve` infra command per CLAUDE.md's "everything via generate/stream/serve * only" contract. */ export const voiceServerCommand = { command: "voice-server", describe: "[DEPRECATED — use 'neurolink serve voice'] Start the real-time voice assistant server", builder: (yargs) => yargs.option("port", { alias: "p", type: "number", default: 3000, describe: "Port to listen on", }), handler: async (argv) => { console.warn("[deprecation] 'neurolink voice-server' is deprecated. Use 'neurolink serve voice' instead. This alias will be removed in a future release."); configureVoiceServerEnvironment(); await startVoiceServer(argv.port); }, }; //# sourceMappingURL=voiceServer.js.map