systemprompt-models 0.14.3

Foundation data models for systemprompt.io AI governance infrastructure. Shared DTOs, config, and domain types consumed by every layer of the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! JSON-Schema capability matrices and sanitisation, shared by the gateway
//! wire codecs and the agent-flow provider clients.
//!
//! [`ProviderCapabilities`] declares which JSON-Schema constructs each provider
//! accepts; [`SchemaSanitizer`] strips everything outside that set. A wire
//! protocol resolves its matrix via
//! [`crate::profile::WireProtocol::schema_capabilities`].

pub mod capabilities;
pub mod sanitizer;

pub use capabilities::{ProviderCapabilities, SchemaComposition, SchemaFeatures};
pub use sanitizer::SchemaSanitizer;