symbi-runtime 1.7.0

Agent Runtime System for the Symbi platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! RAG (Retrieval-Augmented Generation) Engine Module
//!
//! This module provides the RAG engine implementation for the Symbiont Agent Runtime.
//! It includes query analysis, document retrieval, ranking, and response generation capabilities.

pub mod engine;
pub mod types;

#[cfg(test)]
mod tests;

pub use engine::{RAGEngine, StandardRAGEngine};
pub use types::*;