Skip to main content

klieo_memory_graph_neo4j/
lib.rs

1#![deny(missing_docs)]
2#![deny(rust_2018_idioms)]
3#![deny(rustdoc::broken_intra_doc_links)]
4
5//! Neo4j-backed knowledge graph for klieo GraphRAG.
6//!
7//! Pair with [`klieo-memory-neo4j`](https://crates.io/crates/klieo-memory-neo4j)
8//! for episodic + vector storage and
9//! [`klieo-memory-graph-rag`](https://crates.io/crates/klieo-memory-graph-rag)
10//! for retrieval orchestration.
11
12pub mod scoped_query;
13pub use scoped_query::{scoped, ScopeParams};
14
15pub mod knowledge_graph;
16pub use knowledge_graph::Neo4jKnowledgeGraph;
17
18mod subgraph;