Skip to main content

kopitiam_knowledge/
lib.rs

1//! The Knowledge Engine: owns the unified semantic graph.
2//!
3//! Consumes facts from any `kopitiam_ontology`-speaking provider
4//! (`kopitiam-semantic`'s Rust providers, document providers, future
5//! language adapters) and lets callers query and traverse them. Storage and
6//! model invocation are deliberately out of scope here — see
7//! `kopitiam-index` for persistence and `kopitiam-workflow` for orchestration.
8
9mod graph;
10
11pub use graph::SemanticGraph;