systemprompt-ai 0.21.1

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
15
16
17
//! Anthropic provider driver.
//!
//! Chat completions, streaming, search-grounded responses, and tool use.
//! Vendor wire translation is delegated to the shared
//! `systemprompt_models::wire::anthropic` codec via the `canonical_bridge`.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

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

pub use provider::AnthropicProvider;