UNPKG

multimind-sdk

Version:

This SDK gives JavaScript/TypeScript developers full access to advanced AI features like agent orchestration, RAG, and fine-tuning — without needing to manage backend code.

11 lines 340 B
export interface RAGConfig { indexPath: string; topK?: number; similarityThreshold?: number; } export declare function queryRAG(prompt: string, config: RAGConfig): Promise<any>; export declare function createRAGEngine(config: RAGConfig): Promise<{ success: boolean; message: string; }>; //# sourceMappingURL=rag.d.ts.map