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
15
16
17
18
//! Kernel actor module.
//!
//! The Kernel is the central coordinator and supervisor of the entire
//! Acton-AI system. It manages agent lifecycles and routes inter-agent
//! communication.

mod actor;
mod config;
mod discovery;
mod logging;

pub use actor::{InitKernel, Kernel, KernelMetrics};
pub use config::KernelConfig;
pub use discovery::CapabilityRegistry;
pub use logging::{
    get_log_dir, init_and_store_logging, init_file_logging, LogLevel, LoggingConfig, LoggingError,
    LoggingErrorKind, LoggingGuard,
};