/** * 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.js'; export { EmbeddingService } from './EmbeddingService.js'; export { SemanticCache, CacheResult } from './SemanticCache.js'; export { SubconsciousEngine, SubconsciousConfig, Task, TaskResult, EngineMetrics, } from './SubconsciousEngine.js'; //# sourceMappingURL=index.d.ts.map