@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) • 565 B
TypeScript
/**
* RAG CLI Commands for NeuroLink
*
* Implements commands for RAG document processing:
* - neurolink rag chunk <file> - Chunk a document
* - neurolink rag index <file> - Index a document for retrieval
* - neurolink rag query <query> - Query indexed documents
*/
import type { CommandModule } from "yargs";
/**
* RAG CLI command factory
*/
export declare class RAGCommandFactory {
/**
* Create the main RAG command with subcommands
*/
static createRAGCommands(): CommandModule;
}
export declare const ragCommand: CommandModule<{}, {}>;