/** * Codebase RAG Endpoints (v2.0.0) * * Exposes the RAG Query Engine over HTTP to allow external interfaces * (like the PRSense Dashboard) to ask conversational queries. */ import { Router } from 'express'; import type { StorageBackend } from '../storage/interface.js'; import type { EmbeddingPipeline } from '../embeddingPipeline.js'; export declare function createRAGRouter(getStorage: () => Promise, pipeline: EmbeddingPipeline, llmProvider?: import('../rag/queryEngine.js').LLMProvider): Router; //# sourceMappingURL=ragEndpoints.d.ts.map