systemprompt-ai 0.7.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
14
//! Tool-aware generation pipeline — executes tool calls, formats results
//! for the model, and synthesises the final response. See
//! [`crate::ToolResultFormatter`].

pub mod executor;
pub mod formatter;
pub mod synthesizer;

pub use executor::{ResponseStrategy, TooledExecutor};
pub use formatter::ToolResultFormatter;
pub use synthesizer::{
    FallbackGenerator, FallbackReason, ResponseSynthesizer, SynthesisParams,
    SynthesisPromptBuilder, SynthesisResult,
};