agentor 0.3.0

Agent-native Actor runtime — an Actor-model execution platform designed for AI Agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod agent;
pub mod checkpoint;
pub mod llm;
pub mod state;
pub mod tool;
pub mod parser;

pub use agent::{AgentActor, AgentMessage};
pub use checkpoint::{Checkpoint, CheckpointStore};
pub use llm::{LlmConnector, LlmMessage, LlmResponse, LlmRole};
pub use state::{AgentPhase, AgentState, MemoryEntry};