zagens-runtime-orchestrator 0.7.3

Runtime thread/turn persist layer for Zagens sidecar (D16 E1-b)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Runtime orchestrator — thread/turn persist (D16 E1-b, D17 frozen).
//!
//! Live engine orchestration (`RuntimeThreadHost` impl, spawn/monitor, turn
//! lifecycle) intentionally remains in `zagens-cli`.  Further
//! extraction is **deferred by design** (D17 Architecture Freeze) — the
//! engine, tools, and route handlers form an internally co-located unit
//! that is not a candidate for crate-level splitting.  This crate is the
//! stable boundary for SQLite thread storage, pricing aggregation, and
//! `RuntimeThreadManager` persistence helpers.

pub mod engine;
pub mod models;
pub mod pricing;
pub mod runtime_threads;
pub mod thread_store_sqlite;
pub mod usage_aggregate;