12 lines
757 B
TypeScript
12 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';
|