zeph-memory 0.19.1

Semantic memory with SQLite and Qdrant for Zeph agent
Documentation
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0

pub mod store;
pub mod types;

pub mod activation;
pub mod belief_revision;
pub mod community;
pub mod entity_lock;
pub mod extractor;
pub mod resolver;
pub mod retrieval;
pub mod rpe;

pub use store::GraphStore;
pub use types::{Community, Edge, EdgeType, Entity, EntityAlias, EntityType, Episode, GraphFact};

pub use activation::{
    ActivatedFact, ActivatedNode, SpreadingActivation, SpreadingActivationParams,
};
pub use belief_revision::{BeliefRevisionConfig, find_superseded_edges};
pub use community::{
    GraphEvictionStats, assign_to_community, cleanup_stale_entity_embeddings, detect_communities,
    run_graph_eviction,
};
pub use entity_lock::EntityLockManager;
pub use extractor::{ExtractedEdge, ExtractedEntity, ExtractionResult, GraphExtractor};
pub use resolver::{EntityResolver, ResolutionOutcome};
pub use retrieval::{graph_recall, graph_recall_activated};
pub use rpe::{RpeRouter, RpeSignal, extract_candidate_entities};