Quick Start
Agent Lifecycle
BaseAgent
DeltaState
- Simple attribute changes generate
replacedeltas - List modifications generate
add/removedeltas - Nested dict changes are tracked recursively
Runtime
Python agents run inside a Rust shim that embeds the Python interpreter via PyO3:- The Rust shim handles IPC communication with the coordinator
- Python GIL is managed by the Rust layer
- Agent code runs in an asyncio event loop