25 lines
661 B
TypeScript
25 lines
661 B
TypeScript
/**
|
|
* Consciousness-Explorer Integration
|
|
*
|
|
* Multi-layered graph for consciousness models
|
|
* Integration with consciousness-explorer package
|
|
*
|
|
* Explores:
|
|
* - Global workspace theory
|
|
* - Integrated information theory
|
|
* - Higher-order thought models
|
|
* - Metacognition layers
|
|
*/
|
|
declare const _default: {
|
|
description: string;
|
|
run(config: any): Promise<{
|
|
perceptualLayer: number;
|
|
attentionLayer: number;
|
|
metacognitiveLayer: number;
|
|
integratedInformation: number;
|
|
consciousnessLevel: number;
|
|
totalTime: number;
|
|
}>;
|
|
};
|
|
export default _default;
|
|
//# sourceMappingURL=consciousness-explorer.d.ts.map
|