kernel/records/mod.rs
1//! The kernel's data model: model records and the value types they compose.
2
3pub mod byte_format;
4pub mod identifiers;
5pub mod json_value;
6pub mod model_record;
7pub mod param_form;
8pub mod text_budget;
9
10pub use byte_format::format_bytes;
11pub use identifiers::{
12 BidPreference, Capability, ExecutionMode, Modality, ModelState, RunTier, RuntimeId, SourceKind,
13};
14pub use json_value::JsonValue;
15pub use model_record::{
16 ModelRecord, ModelSource, ParamSpec, ParamType, Resolution, RuntimeRef, stable_id,
17};
18pub use text_budget::{Clip, clip};