//! Agent execution loop
//!
//! This module implements the main agent execution loop that processes
//! user requests, executes tools, and manages the conversation flow.
//!
//! # Components
//!
//! - **Runner**: Main loop implementation
//! - **Stream**: Streaming response handling
//! - **TaskContext**: Task list integration
//! - **TaskEvaluation**: Progress evaluation logic
//!
//! # Example
//!
//! ```rust,ignore
//! use bamboo_agent::agent::loop_module::{run_agent_loop, AgentLoopConfig};
//!
//! let config = AgentLoopConfig::default();
//! let result = run_agent_loop(session, provider, config).await?;
//! ```
pub use ;
pub use ;
pub use TaskLoopContext;
pub use ;