aipack 0.8.25

Command Agent runner to accelerate production coding with genai.
//! Common type elements used in multiple Model Struct

// region:    --- Modules

mod content;
mod end_state;
mod epoch_us;
mod id;
mod model_event;
mod run_step;
mod running_state;
mod stage;

pub use content::*;
pub use end_state::*;
pub use epoch_us::*;
pub use id::*;
pub use model_event::*;
pub use run_step::*;
pub use running_state::*;
pub use stage::*;

// endregion: --- Modules