UNPKG

rag-cli-tester

Version:

A lightweight CLI tool for testing RAG (Retrieval-Augmented Generation) systems with different embedding combinations

14 lines 566 B
export interface EmbeddingModel { id: string; name: string; dimensions: number; description: string; provider: 'local' | 'openai' | 'gemini'; modelPath?: string; apiModel?: string; } export declare const AVAILABLE_EMBEDDING_MODELS: EmbeddingModel[]; export declare function getModelById(id: string): EmbeddingModel | undefined; export declare function getModelsByProvider(provider: 'local' | 'openai' | 'gemini'): EmbeddingModel[]; export declare function getLocalModels(): EmbeddingModel[]; //# sourceMappingURL=embedding-models.d.ts.map