oxirs-graphrag 0.2.4

GraphRAG: Hybrid Vector + Graph Retrieval-Augmented Generation for OxiRS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Retrieval module for GraphRAG

pub mod fusion;
pub mod reranker;
pub mod streaming_sparql;
pub mod streaming_subgraph;

pub use fusion::{FusionStrategy, ResultFuser};
pub use reranker::Reranker;
pub use streaming_sparql::{
    StreamingSparqlConfig, StreamingSparqlRetriever, SubgraphStream as SparqlSubgraphStream,
    TriplePage,
};
pub use streaming_subgraph::{
    StreamConfig, StreamingSubgraphRetriever, SubgraphBatch, SubgraphStream,
};