im_wower
·
2026-03-31
__init__.py
1"""CIE — Cognitive Inference Engine"""
2from .graph import Graph, Node, Edge
3from .state import CIEState, AttentionPool
4from .dynamics import Dynamics
5from .runtime import CIERuntime
6
7__all__ = ['Graph', 'Node', 'Edge', 'CIEState', 'AttentionPool', 'Dynamics', 'CIERuntime']