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
//! [`crate::AiService`] internals.
//!
//! Split across generation, streaming, tool execution, planning, the
//! [`crate::AiProvider`] bridge, and the streaming storage wrapper.

mod generation;
mod planning;
mod provider_impl;
mod service;
mod stream_wrapper;
mod streaming;
mod tool_execution;

pub use service::AiService;