systemprompt-ai 0.14.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
//! Provider-agnostic response assembly shared across LLM backends.
//!
//! Re-exports [`build_response`] together with its [`BuildResponseParams`]
//! input and the [`TokenUsage`] accounting type, letting each provider adapter
//! turn a raw completion into a normalised `AiResponse` without duplicating the
//! logic.

mod response_builder;

pub use response_builder::{BuildResponseParams, TokenUsage, build_response};