Files
the-nexus/nexus/__init__.py
Alexander Whitestone 8ead4cd13f
Some checks failed
CI / validate (pull_request) Failing after 4s
feat: add thin Evennia to Nexus event adapter
2026-03-28 16:02:27 -04:00

33 lines
667 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
try:
from nexus.nexus_think import NexusMind
except Exception:
NexusMind = None
__all__ = [
"ws_to_perception",
"parse_actions",
"PerceptionBuffer",
"Perception",
"Action",
"ExperienceStore",
"TrajectoryLogger",
"NexusMind",
]