systemprompt-ai 0.10.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
11
12
13
14
//! Anthropic provider driver — chat completions, streaming, search-grounded
//! responses, and tool use.

pub mod converters;
mod generation;
mod provider;
mod request;
mod response;
pub mod search;
mod streaming;
pub mod thinking;
mod trait_impl;

pub use provider::AnthropicProvider;