klieo-ops 3.3.0

Operational layer above klieo-core: supervisor, governor, gates, escalation, worklog, handoff.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Governor primitive: capacity + rate limiting.

mod governed_client;
mod token_bucket;
mod trait_;

pub use crate::runtime::GovernedLlmClient;
pub use governed_client::governed_client;
pub use reqwest_middleware::ClientWithMiddleware;
pub use token_bucket::{TokenBucketGovernor, TokenBucketGovernorBuilder};
pub use trait_::{BudgetLimit, BudgetSnapshot, Governor, GovernorError, Host, Permit};