UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and

64 lines (63 loc) 1.43 kB
/** * Models CLI Commands for NeuroLink * Implements comprehensive model management commands * Part of Phase 4.1 - Models Command System */ import type { CommandModule } from "yargs"; /** * Models CLI command factory */ export declare class ModelsCommandFactory { /** * Create the main models command with subcommands */ static createModelsCommands(): CommandModule; /** * Build options for list command */ private static buildListOptions; /** * Build options for search command */ private static buildSearchOptions; /** * Build options for best command */ private static buildBestOptions; /** * Build options for resolve command */ private static buildResolveOptions; /** * Build options for compare command */ private static buildCompareOptions; /** * Build options for stats command */ private static buildStatsOptions; /** * Execute list command */ private static executeList; /** * Execute search command */ private static executeSearch; /** * Execute best command */ private static executeBest; /** * Execute resolve command */ private static executeResolve; /** * Execute compare command */ private static executeCompare; /** * Execute stats command */ private static executeStats; }