relay-knowledge 1.1.6

Graph-database-based knowledge graph project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Agent protocol adapters for resident relay-knowledge processes.

pub mod acp;
mod audit;
pub mod mcp;
mod policy;

pub use audit::{
    AgentAuditEvent, AgentAuditLog, AgentAuditQosDecision, AgentAuditSink, AgentAuditStatus,
};
pub use policy::{
    AgentAdapterError, AgentAdapterErrorKind, authorize_limit, authorize_scope,
    normalize_scope_for_policy, scope_not_authorized,
};