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
//! Google Gemini `generateContent` API wire types.
//!
//! Re-exports the request and response structs matching Gemini's JSON shape.
//! The model catalogue (ids, pricing, capabilities) lives in the profile
//! `providers` registry, not here.

mod request;
mod response;

pub use request::*;
pub use response::*;