episteme 0.3.7

Knowledge graph for software engineering — design patterns, refactorings, and laws for AI agents
Documentation
1
2
3
4
5
6
7
8
9
pub mod embeddings;
pub mod graph;
pub mod parser;
pub mod search;

pub use embeddings::EmbeddingProvider;
pub use graph::{GraphRepository, MutableGraphRepository};
pub use parser::CodeParser;
pub use search::SearchIndex;