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) 425 B
#!/usr/bin/env node /** * Anthropic Setup Command * * Simple setup for Anthropic Claude integration: * - ANTHROPIC_API_KEY (required) * - ANTHROPIC_MODEL (optional, with Claude model choices) * * Follows the same UX patterns as setup-openai and setup-google-ai */ import { type ProviderSetupArgv } from "../../lib/types/index.js"; export declare function handleAnthropicSetup(argv: ProviderSetupArgv): Promise<void>;