brainy/dist/cortex.d.ts
David Snelling f8c45f2d8d Initial commit: Brainy - Multi-Dimensional AI Database
Open source vector database with HNSW indexing, graph relationships,
and metadata facets. Features CLI with professional augmentation registry
integration for discovering extensions and capabilities.
2025-08-18 17:35:06 -07:00

11 lines
757 B
TypeScript

/**
* Cortex - The Brain's Central Orchestration System
*
* 🧠⚛️ The cerebral cortex that coordinates all augmentations
*
* This is the main export for the Cortex system. It provides the central
* coordination for all augmentations, managing their registration, execution,
* and pipeline orchestration.
*/
export { Cortex, cortex, ExecutionMode, PipelineOptions, AugmentationPipeline, augmentationPipeline } from './augmentationPipeline.js';
export type { BrainyAugmentations, IAugmentation, ISenseAugmentation, IConduitAugmentation, ICognitionAugmentation, IMemoryAugmentation, IPerceptionAugmentation, IDialogAugmentation, IActivationAugmentation, IWebSocketSupport, AugmentationResponse, AugmentationType } from './types/augmentations.js';