systemprompt-ai 0.10.3

Provider-agnostic LLM integration for systemprompt.io AI governance — Anthropic, OpenAI, Gemini, and local models unified behind one governed pipeline with cost tracking and audit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Schema utilities — provider capability matrices, transformer to coerce
//! tool input schemas to provider-specific shapes, and a sanitiser pass.

pub mod analyzer;
pub mod capabilities;
pub mod mapper;
pub mod sanitizer;
pub mod transformer;

pub use analyzer::DiscriminatedUnion;
pub use capabilities::ProviderCapabilities;
pub use mapper::ToolNameMapper;
pub use sanitizer::SchemaSanitizer;
pub use transformer::{SchemaTransformer, TransformedTool};