selfware 0.2.2

Your personal AI workshop — software you own, software that lasts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Session and state management module
//!
//! This module contains session persistence and state management including:
//! - Checkpointing
//! - Caching
//! - Local-first storage
//! - Edit history

pub mod chat_store;
pub mod checkpoint;
pub mod edit_history;
pub mod encryption;
pub mod local_first;

pub mod cache;