/** * Subconscious Semantic Engine * * A high-performance semantic caching system for AI agent orchestration. * Provides "short-circuit" logic to return cached results for similar tasks, * reducing latency from seconds to milliseconds. */ export { VectorStore } from './VectorStore'; export { EmbeddingService } from './EmbeddingService'; export { SemanticCache, CacheResult } from './SemanticCache'; export { SubconsciousEngine, SubconsciousConfig, Task, TaskResult, EngineMetrics, } from './SubconsciousEngine'; //# sourceMappingURL=index.d.ts.map