ragrig 0.8.0

Trait-driven RAG framework for students and researchers. Zero native dependencies, hot-swap any agent at runtime, hybrid BM25+vector retrieval. Default build compiles with cargo build --release and nothing else.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Deprecated compatibility shim — use [`crate::memory`] instead.
//!
//! All types have been renamed:
//! - `HistoryStrategy` → [`crate::memory::MemoryStrategy`]
//! - `RewriterHistory` → [`crate::memory::RewriterMemory`]
//! - `TranscriptHistory` → [`crate::memory::TranscriptMemory`]

pub use crate::memory::{
    MemoryStrategy as HistoryStrategy,
    RewriteMemory as RewriteHistory,
    TranscriptMemory as TranscriptHistory,
};