awaken-runtime 0.4.0

Phase-based execution engine, plugin system, and agent loop for Awaken
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Agent loop state keys — run lifecycle, tool call lifecycle, and inference override tracking.

mod context_throttle;
mod loop_actions;
mod pending_work;
mod run_lifecycle;
mod tool_call_lifecycle;

pub use context_throttle::*;
pub use loop_actions::*;
pub use pending_work::*;
pub use run_lifecycle::*;
pub use tool_call_lifecycle::*;