@masuidrive/bloom-local-rag
Version:
RAG (Retrieval-Augmented Generation) system for local directories - Index and search your documents with AI-powered answers
16 lines • 493 B
TypeScript
import { Config } from '../types/index.js';
import { VectorStoreManager } from './vectorStore.js';
export interface IndexResult {
added: string[];
updated: string[];
deleted: string[];
totalChunks: number;
}
export declare class Indexer {
private config;
private vectorStore;
private limit;
constructor(config: Config, vectorStore: VectorStoreManager);
index(directory: string, force?: boolean): Promise<IndexResult>;
}
//# sourceMappingURL=indexer.d.ts.map