UNPKG

@masuidrive/bloom-local-rag

Version:

RAG (Retrieval-Augmented Generation) system for local directories - Index and search your documents with AI-powered answers

10 lines 304 B
export interface QueryOptions { directory?: string; limit?: number; noContext?: boolean; json?: boolean; temperature?: number; verbose?: boolean; } export declare function queryCommand(searchText: string, options?: QueryOptions): Promise<void>; //# sourceMappingURL=query.d.ts.map