relay-knowledge 1.1.14

Graph-database-based knowledge graph project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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, MAX_AGENT_PATH_CHARS, MAX_AGENT_QUERY_CHARS,
    authorize_limit, authorize_scope, normalize_scope_for_policy, scope_not_authorized,
    validate_optional_query_text, validate_path_texts, validate_query_text,
};