kime_core/lib.rs
1//! Request and answer types, validation, state rendering, confidence formulas, rounding,
2//! calibration, email cleaning, presets and browser agent steps.
3//!
4//! Everything here is pure computation on the host with no device and no I/O, which is why it is
5//! the crate every other one can depend on. See spec/03-api.md, spec/04-semantics.md and
6//! spec/06-input.md.
7
8#![forbid(unsafe_code)]
9
10/// The date this version of kime was released, which `/v1/models` gives as every model's
11/// `release_date`. Jev's clients want a string there, and a checkpoint carries no date of its own.
12pub const RELEASE_DATE: &str = "2026-09-25";
13
14pub mod agent;
15pub mod answer;
16pub mod confidence;
17pub mod email;
18pub mod presets;
19pub mod pyjson;
20pub mod render;
21pub mod request;
22pub mod round;