agnt-store 0.3.1

SQLite message store for the agnt agent runtime — bundled SQLite, session log with microsecond tool profiling.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # agnt-store
//!
//! SQLite-backed message store for the agnt agent runtime.
//!
//! Provides a bundled SQLite persistence layer that implements
//! [`agnt_core::MessageStore`] with session-scoped message logs and
//! microsecond-level tool call profiling.
//!
//! Uses `rusqlite/bundled` so there's no system libsqlite dependency —
//! builds everywhere Rust builds.

pub mod store;

pub use store::Store;