export declare const semanticController: { /** * Store LLM responses with vector embeddings for future semantic search */ storeLLMResponse(req: Request): Promise; /** * Search for semantically similar LLM responses */ searchSimilar(req: Request): Promise; /** * Get all responses for a specific query */ getResponses(req: Request): Promise; /** * Get cache statistics */ getStats(): Promise; }; //# sourceMappingURL=semantic.d.ts.map