systemprompt-ai 0.10.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
//! Persistence pipeline for AI request audit rows.
//!
//! Builds the record from request + response, then invokes
//! [`crate::repository::AiRequestRepository`] asynchronously so the hot path
//! never blocks on the DB.

mod async_operations;
mod record_builder;
mod storage;

pub use storage::{RequestStorage, StoreParams};