aipack 0.8.23

Command Agent runner to accelerate production coding with genai.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// region:    --- Modules

mod data;
mod pricer;
mod pricing_types;

// endregion: --- Modules

// region:    --- Public API
pub use pricer::{model_pricing, price_it};
pub use pricing_types::ModelPricing;
use pricing_types::*;

// endregion: --- Public API