localgpt 0.1.3

A local device focused AI assistant with persistent markdown memory, autonomous heartbeat tasks, and semantic search. Single binary, no runtime dependencies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Centralized security module for LocalGPT.
//!
//! See [`localgpt`] for the module overview, architecture diagram,
//! and public API documentation.

mod audit;
mod localgpt;
mod policy;
mod protected_files;
mod signing;
mod suffix;

// The localgpt.rs facade controls the entire public API surface.
pub use self::localgpt::*;