episteme 0.2.1

Knowledge graph for software engineering — design patterns, refactorings, and laws for AI agents
Documentation
pub mod builder;
pub mod cache;
pub mod chunker;
pub mod config;
pub mod constants;
pub mod error;
pub mod hooks;
pub mod insight_utils;
pub mod install_wizard;
pub mod installer;
pub mod json_loader;
pub mod local_embeddings;
pub mod metrics;
pub mod noop_embeddings;
#[cfg(feature = "openai-embeddings")]
pub mod openai_embeddings;
pub mod paths;
pub mod python_ast_parser;
pub mod rate_limiter;
pub mod rate_limiter_mw;
pub mod regex_parsers;
pub mod search_engines;
pub mod service;
pub mod sqlite_db;
pub mod structured_logging;
pub mod telemetry;
pub mod user_graph_store;

pub use config::EpistemeConfig;
pub use error::InfraError;
pub use json_loader::load_graph;
pub use local_embeddings::LocalEmbeddingProvider;
pub use noop_embeddings::NoopEmbeddingProvider;
pub use regex_parsers::get_parser;
pub use user_graph_store::UserGraphStore;