systemprompt-ai 0.15.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
//! Core orchestration services — [`crate::AiService`] and
//! [`crate::ImageService`] live here, along with request storage helpers
//! and the request-logging surface used by the streaming wrappers.

pub mod ai_service;
mod image_persistence;
pub mod image_service;
mod request_logging;
pub mod request_storage;

pub use ai_service::AiService;
pub use image_service::ImageService;
pub use request_storage::RequestStorage;