vectorless 0.1.32

Reasoning-based Document Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2026 vectorless developers
// SPDX-License-Identifier: Apache-2.0

//! LLM Memoization system for caching expensive LLM calls.
//!
//! Provides a caching layer for LLM-generated content, avoiding
//! redundant API calls via content-addressed LRU cache with TTL
//! and optional disk persistence.

mod store;
mod types;

pub use store::MemoStore;
pub use types::{MemoKey, MemoValue};