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

22 lines 542 B
/** * CLI-specific type definitions for NeuroLink */ /** * Type guard for generate result */ export function isCliGenerateResult(value) { return (typeof value === "object" && value !== null && "content" in value && typeof value.content === "string"); } /** * Type guard for command result */ export function isCommandResult(value) { return (typeof value === "object" && value !== null && "success" in value && typeof value.success === "boolean"); } //# sourceMappingURL=cli.js.map