ragrig 0.9.3

RAG framework for research and prototyping. Zero 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::RewriteMemory`]
//! - `TranscriptHistory` → [`crate::memory::TranscriptMemory`]

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