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

13 lines (12 loc) 397 B
#!/usr/bin/env node /** * OpenAI Setup Command * * Simple setup for OpenAI API integration: * - OPENAI_API_KEY (required) * - OPENAI_MODEL (optional, with popular choices) * * Follows the same UX patterns as setup-gcp and setup-bedrock */ import { type ProviderSetupArgv } from "../../lib/types/index.js"; export declare function handleOpenAISetup(argv: ProviderSetupArgv): Promise<void>;