agent-runtime/agent/nodes/__init__.py
Nico 7458b2ea35 v0.8.0: refactor agent.py into modular package
Split 1161-line monolith into agent/ package:
auth, llm, types, process, runtime, api, and
nodes/ (base, sensor, input, output, thinker, memorizer).
No logic changes — pure structural split.
uvicorn agent:app entrypoint unchanged.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 01:36:41 +01:00

10 lines
267 B
Python

"""Node modules."""
from .sensor import SensorNode
from .input import InputNode
from .output import OutputNode
from .thinker import ThinkerNode
from .memorizer import MemorizerNode
__all__ = ["SensorNode", "InputNode", "OutputNode", "ThinkerNode", "MemorizerNode"]