mentra 0.6.0

An agent runtime for tool-using LLM applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod compaction;
mod engine;
mod hybrid_store;
pub(crate) mod journal;

pub(crate) use compaction::{
    estimated_request_tokens, micro_compact_history, required_tail_start_for_continuation,
};
pub use engine::{
    IngestOutcome, IngestRequest, MemoryCursor, MemoryEngine, MemoryHit, MemoryRecord,
    MemoryRecordKind, MemorySearchMode, MemorySearchRequest, MemoryStore, SearchRequest,
};
pub(crate) use engine::{build_search_query, recalled_memory_message};
pub use hybrid_store::SqliteHybridMemoryStore;