mnemara-protocol 0.2.1

Local-first, explainable AI memory engine for embedded and service-based systems
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() -> Result<(), Box<dyn std::error::Error>> {
    let protoc = protoc_bin_vendored::protoc_bin_path()?;
    unsafe {
        std::env::set_var("PROTOC", protoc);
    }

    tonic_prost_build::configure()
        .compile_protos(&["proto/mnemara/v1/memory.proto"], &["proto"])?;
    Ok(())
}