converge-mnemos-knowledge 1.2.2

Self-learning knowledgebase with vector search, gRPC, and MCP interfaces. Implements Converge recall and storage suggestors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! gRPC service implementation.

#[allow(clippy::all, clippy::pedantic)]
#[allow(missing_docs)]
mod knowledge {
    tonic::include_proto!("mnemos.v1");
}

pub mod client;
pub mod server;

pub use client::KnowledgeClient;
pub use knowledge::*;
pub use server::KnowledgeServiceImpl;