awaken-runtime 0.6.0

Phase-based execution engine, plugin system, and agent loop for Awaken
Documentation
1
2
3
4
5
6
7
8
9
//! Tool execution concerns: executors.

pub mod executor;
pub(crate) mod tool_error;

pub use executor::{
    DecisionReplayPolicy, ParallelMode, ParallelToolExecutor, SequentialToolExecutor,
    ToolExecutionResult, ToolExecutor, ToolExecutorError,
};