systemprompt-api 0.3.0

Axum-based HTTP server and API gateway for systemprompt.io AI governance infrastructure. Exposes governed agents, MCP, A2A, and admin endpoints with rate limiting and RBAC.
Documentation
pub mod audit;
pub mod converter;
pub mod models;
pub mod parse;
pub mod policy;
pub mod pricing;
pub mod quota;
pub mod registry;
pub mod safety;
pub mod service;
pub mod stream_tap;
pub mod upstream;

pub use audit::{CapturedToolUse, CapturedUsage, GatewayAudit, GatewayRequestContext};
pub use registry::GatewayUpstreamRegistry;
pub use service::{GatewayService, REQUEST_ID_HEADER};
pub use upstream::{
    AnthropicCompatibleUpstream, GatewayUpstream, GatewayUpstreamRegistration,
    OpenAiCompatibleUpstream, UpstreamCtx, UpstreamOutcome,
};