UNPKG

@masuidrive/bloom-local-rag

Version:

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

21 lines 441 B
export * from './config.js'; export interface FileInfo { path: string; content: string; metadata: Record<string, any>; } export interface SearchResult { content: string; metadata: { path: string; chunkId: string; score: number; }; } export interface QueryResult { query: string; answer?: string; sources: SearchResult[]; timestamp: string; } //# sourceMappingURL=index.d.ts.map