noxy-sdk 2.0.1

Decision Layer SDK for AI agents. Encrypted actionable decisions over gRPC.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Configuration for the Noxy Decision Layer SDK client.
#[derive(Clone, Debug)]
pub struct NoxyConfig {
    /// Noxy relay gRPC endpoint (e.g. `https://relay.noxy.network:443`).
    pub endpoint: String,
    /// Bearer token for relay authentication.
    pub auth_token: String,
    /// Time-to-live for routed decisions in seconds.
    pub decision_ttl_seconds: u32,
}