Skip to main content

zeph_memory/graph/
mod.rs

1// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4pub mod store;
5pub mod types;
6
7pub mod community;
8pub mod extractor;
9pub mod resolver;
10pub mod retrieval;
11
12pub use store::GraphStore;
13pub use types::{Community, Edge, Entity, EntityAlias, EntityType, GraphFact};
14
15pub use community::{
16    GraphEvictionStats, assign_to_community, cleanup_stale_entity_embeddings, detect_communities,
17    run_graph_eviction,
18};
19pub use extractor::{ExtractedEdge, ExtractedEntity, ExtractionResult, GraphExtractor};
20pub use resolver::{EntityResolver, ResolutionOutcome};
21pub use retrieval::graph_recall;