Skip to main content

Crate traitclaw_memory_sqlite

Crate traitclaw_memory_sqlite 

Source
Expand description

SQLite memory backend for the TraitClaw AI agent framework.

Provides persistent conversation history, working memory, and FTS5-powered long-term recall — all backed by a single SQLite database file.

§Quick Start

use traitclaw_memory_sqlite::SqliteMemory;

let memory = SqliteMemory::new("./agent.db").expect("Failed to open database");

Structs§

SqliteMemory
SQLite-backed memory backend.