rlm_rs/core/mod.rs
1//! Core domain models for RLM-RS.
2//!
3//! This module contains the fundamental data structures used throughout the
4//! RLM system: contexts, buffers, and chunks. These are pure domain models
5//! with no I/O dependencies.
6
7pub mod buffer;
8pub mod chunk;
9pub mod context;
10
11pub use buffer::{Buffer, BufferMetadata};
12pub use chunk::{Chunk, ChunkMetadata, estimate_tokens_for_text};
13pub use context::{Context, ContextValue};