acton-ai 0.26.0

An agentic AI framework where each agent is an actor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Agent actor module.
//!
//! This module contains the Agent actor implementation, which represents
//! an individual AI agent with its own state, tools, and reasoning loop.

mod actor;
mod config;
mod delegation;
mod state;

pub use actor::{Agent, InitAgent, PendingLLMRequest, RegisterToolActors};
pub use config::AgentConfig;
pub use delegation::{DelegatedTask, DelegatedTaskState, DelegationTracker, IncomingTaskInfo};
pub use state::AgentState;