kopitiam-knowledge 0.2.1

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

mod graph;

pub use graph::SemanticGraph;