//! Mutable state for streamed sub-agent events.
//!
//! This module keeps the event-loop state shape separate from the collection
//! and finalization logic.
//!
//! # Examples
//!
//! ```ignore
//! let state = EventLoopState::default();
//! assert!(state.response.is_empty());
//! ```
use Value;
/// Mutable accumulator for streamed session output.
///
/// # Examples
///
/// ```ignore
/// let state = EventLoopState::default();
/// ```
pub