aipack 0.8.25

Command Agent runner to accelerate production coding with genai.
#![allow(unused)]

//! NOT INTEGRATED YET
//!
//! This will be the new run queue executor responsible for executing runs.
//! The concept is that any start, pause, or cancel operation for a run will go through the
//! RunQueueExecutor.
//! Thus, the exec::Executor will send the top-level agent run to the RunQueueExecutor, and
//! the aip_agent run will likely send the Sub Agent Run command directly to the RunQueueExecutor
//! (currently, it sends it back to exec::Executor).
//!

// region:    --- Module

mod run_queue_event;
mod run_queue_executor;

pub use run_queue_event::*;
pub use run_queue_executor::*;

// endregion: --- Module