qualia_core_db/inference/runtime/graph_assist/mod.rs
1//! Explicit graph-assisted inference ABI.
2//!
3//! Graph retrieval is a cold/request-bound workload reducer, never an implicit token-kernel side
4//! effect. Results, token spans, and prefix-page identities are caller-buffered and separately
5//! accounted so model throughput cannot be relabelled as retrieval throughput.
6
7mod identity;
8mod prefix_registry;
9mod query;
10
11pub use identity::{derive_prefix_identity, PrefixIdentity};
12pub use prefix_registry::{PrefixPageRegistry, PrefixPageSet, RegistryError};
13pub use query::{
14 query_graph_into, GraphAssistPolicy, GraphQuery, GraphQueryError, GraphSelectionReceipt,
15};
16
17#[cfg(test)]
18mod tests;