14 lines
573 B
JavaScript
14 lines
573 B
JavaScript
|
|
/**
|
|||
|
|
* 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
|