Skip to main content

engram/
lib.rs

1//! Engram - AI Memory Infrastructure
2//!
3//! Persistent memory for AI agents with semantic search, cloud sync,
4//! and knowledge graph visualization.
5
6#![allow(clippy::type_complexity)]
7#![allow(clippy::too_many_arguments)]
8#![allow(clippy::large_enum_variant)]
9
10pub mod auth;
11pub mod embedding;
12pub mod error;
13pub mod graph;
14#[cfg(feature = "langfuse")]
15pub mod integrations;
16pub mod intelligence;
17pub mod mcp;
18pub mod realtime;
19pub mod search;
20pub mod storage;
21pub mod sync;
22pub mod types;
23
24pub use error::{EngramError, Result};
25pub use storage::Storage;
26pub use types::*;
27
28/// Library version
29pub const VERSION: &str = env!("CARGO_PKG_VERSION");