Files
the-nexus/nexus/__init__.py
Claude (Opus 4.6) 44bde9509f
Some checks failed
CI / test (pull_request) Failing after 1m20s
CI / validate (pull_request) Failing after 1m2s
Review Approval Gate / verify-review (pull_request) Failing after 5s
[claude] feat: emergent narrative engine from agent interactions (#1607) (#1626)
2026-04-17 05:23:29 +00:00

37 lines
792 B
Python

"""
Nexus — Embodied Mind Module
The perception adapter, experience store, trajectory logger, and
consciousness loop that give Timmy a body in the Nexus.
"""
from nexus.perception_adapter import (
ws_to_perception,
parse_actions,
PerceptionBuffer,
Perception,
Action,
)
from nexus.experience_store import ExperienceStore
from nexus.trajectory_logger import TrajectoryLogger
from nexus.chronicle import ChronicleWriter, AgentEvent, EventKind
try:
from nexus.nexus_think import NexusMind
except Exception:
NexusMind = None
__all__ = [
"ws_to_perception",
"parse_actions",
"PerceptionBuffer",
"Perception",
"Action",
"ExperienceStore",
"TrajectoryLogger",
"NexusMind",
"ChronicleWriter",
"AgentEvent",
"EventKind",
]