oxirs-chat 0.2.4

RAG chat API with LLM integration and natural language to SPARQL translation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Advanced Context Management for OxiRS Chat
//!
//! Implements intelligent context management with sliding windows, topic tracking,
//! context summarization, and adaptive memory optimization.
//!
//! ## Refactored Module Structure
//!
//! This module has been refactored from a single 2646-line file into a well-organized
//! modular structure. See `context` submodule for implementation details.

mod context;

// Re-export everything from the modular implementation
pub use context::*;