//! ReactAgent execution engine
//!
//! Contains all internal implementations of the ReAct loop:
//! - `retry` — LLM retry logic + tool concurrent timeout calculation
//! - `context` — Context management + long-term memory + persistence + auditing
//! - `approval` — Tool execution approval (human-in-the-loop)
//! - `execution` — Tool execution (invocation, guards, truncation)
//! - `react_loop` — ReAct loop core (think / process_steps / run_react_loop)
//! - `direct` — Direct execution entry (run_direct / run_chat_direct)
//! - `stream_loop` — Streaming execution loop
pub
pub
pub
pub
pub
pub
pub
pub use StreamMode;