@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
20 lines (19 loc) • 625 B
TypeScript
/**
* Complete Setup Integration for NeuroLink CLI
*
* Orchestrates the entire setup process: interactive wizard, environment management,
* provider testing, and summary display.
*/
import type { SetupResult } from "../../lib/types/index.js";
/**
* Run the complete interactive setup process
*/
export declare function runCompleteSetup(quiet?: boolean): Promise<SetupResult>;
/**
* Wrapper for config setup command
*/
export declare function configSetup(quiet?: boolean): Promise<void>;
/**
* Wrapper for config init command (alias for setup)
*/
export declare function configInit(quiet?: boolean): Promise<void>;