oris-runtime 0.61.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
//! Reranker retrievers
//!
//! These retrievers rerank documents from other retrievers to improve relevance.
//! They use external APIs or local models to score and reorder documents.

#[cfg(feature = "cohere")]
mod cohere_reranker;
#[cfg(feature = "cohere")]
pub use cohere_reranker::*;

#[cfg(any(feature = "flashrank", test))]
mod flashrank_reranker;
#[cfg(any(feature = "flashrank", test))]
pub use flashrank_reranker::*;

#[cfg(feature = "contextual-ai")]
mod contextual_ai_reranker;
#[cfg(feature = "contextual-ai")]
pub use contextual_ai_reranker::*;