oris-runtime 0.61.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
1
2
3
4
5
6
7
8
9
10
11
//! Document compression retrievers
//!
//! These retrievers compress or filter documents to reduce redundancy and improve efficiency.

#[cfg(feature = "llmlingua")]
mod llm_lingua_compressor;
#[cfg(feature = "llmlingua")]
pub use llm_lingua_compressor::*;

mod embeddings_redundant_filter;
pub use embeddings_redundant_filter::*;