systemprompt-ai 0.13.0

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
//! Wire-format request and response types for each upstream AI provider.
//!
//! One submodule per provider ([`anthropic`], [`gemini`], [`openai`]), each
//! mirroring that vendor's JSON API and exposing a `*Models` catalogue of the
//! supported model identifiers and their pricing defaults.

pub mod anthropic;
pub mod gemini;
pub mod openai;

pub use anthropic::AnthropicModels;
pub use gemini::GeminiModels;
pub use openai::OpenAiModels;