systemprompt-ai 0.14.4

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
//! `OpenAI` provider driver.
//!
//! Chat completions, streaming, structured outputs, search (Responses API),
//! and tool use. Vendor wire translation is delegated to the shared
//! `systemprompt_models::wire` codecs via the `canonical_bridge`.

mod generation;
mod provider;
pub mod search;
mod streaming;
mod trait_impl;

pub use provider::OpenAiProvider;