locus-sdk 0.5.0

SDK-first STTP memory primitives and AI provider abstraction
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! System 1 deciders a host can attach to the memory reflex.
//!
//! `HeuristicSystem1` answers the memory catalog with lexical cues so the reflex
//! runs with no checkpoint. `HttpSystem1` posts the same questions to a
//! Laya, `sys1`, or Jev-compatible `/v1/systemone` server.

mod heuristic;

pub use heuristic::HeuristicSystem1;

#[cfg(feature = "http-providers")]
mod http;
#[cfg(feature = "http-providers")]
pub use http::HttpSystem1;