ai-lib-contact 1.0.0

AI-Protocol policy layer: cache, batch, routing, plugins, resilience, guardrails, tokens, telemetry
1
2
3
4
5
6
7
8
9
10
11
//! Deterministic context budget assembly (ALR-P2-001). No network, no LLM summarization.

mod assembler;
mod budget;
mod error;
mod token_estimate;

pub use assembler::{AssembleOptions, AssembleReport, MessageAssembler};
pub use budget::{ContextBudget, ModelCapacity};
pub use error::AssembleError;
pub use token_estimate::{estimate_message_tokens, estimate_tokens, CHARS_PER_TOKEN};