hedos-kernel 1.4.0

The hedos kernel: model records, registry, discovery, install planning, and resolution.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Per-model configuration: the parameter schema a model exposes, merging saved
//! values and the system prompt into requests, and context-window budgeting.

pub mod configuration;
pub mod context_budget;
pub mod fit;
pub mod profile;

pub use configuration::{dropping_vanished_param_values, merged, normalized_param_values};
pub use context_budget::{
    BUILTIN_CONTEXT_WINDOW, COMPLETION_FLOOR, Verdict, assess, effective_window, estimated_tokens,
    prompt_characters, stored_context_length,
};
pub use fit::{FitAssessment, FitVerdict};
pub use profile::{ModelProfile, ProfileRegistry, context_length_spec};