aipack 0.8.22

Command Agent runner to accelerate production coding with genai.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(unused)]

//! IMPORTANT: At this point, not sure if this is needed, and it is not used.

// region:    --- Modules

mod run_event;
mod run_queue;

pub use run_event::*;
// only allow runtime to create/start run queue
pub(in crate::runtime) use run_queue::*;

// endregion: --- Modules