brainy/dist/cortex.js

14 lines
573 B
JavaScript
Raw Normal View History

/**
* 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.
*/
// Re-export from augmentationPipeline (which contains the Cortex class)
export { Cortex, cortex, ExecutionMode,
// Backward compatibility
AugmentationPipeline, augmentationPipeline } from './augmentationPipeline.js';
//# sourceMappingURL=cortex.js.map