Expand description
Actor trait and lifecycle state machine.
Every agent in AgentFlow implements Actor. The trait mirrors the Python
base Actor class: actors receive Messages via an async mailbox, emit
heartbeats, and transition through a well-defined ActorState lifecycle.
Structs§
- Actor
Config - Static configuration supplied when creating an actor.
Enums§
- Actor
State - Lifecycle states of an actor.
Traits§
- Actor
- The core Actor trait.