rlm-cli 1.2.4

Recursive Language Model (RLM) REPL for Claude Code - handles long-context tasks via chunking and recursive sub-LLM calls
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core domain models for RLM-RS.
//!
//! This module contains the fundamental data structures used throughout the
//! RLM system: contexts, buffers, and chunks. These are pure domain models
//! with no I/O dependencies.

pub mod buffer;
pub mod chunk;
pub mod context;

pub use buffer::{Buffer, BufferMetadata};
pub use chunk::{Chunk, ChunkMetadata, estimate_tokens_for_text};
pub use context::{Context, ContextValue};