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
12
//! External index retrievers
//!
//! These retrievers fetch documents from external sources like Wikipedia, arXiv, and web search APIs.

mod wikipedia_retriever;
pub use wikipedia_retriever::*;

mod arxiv_retriever;
pub use arxiv_retriever::*;

mod tavily_retriever;
pub use tavily_retriever::*;