Module actor

Module actor 

Source
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§

ActorConfig
Static configuration supplied when creating an actor.

Enums§

ActorState
Lifecycle states of an actor.

Traits§

Actor
The core Actor trait.