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
//! Reasoning module for GraphRAG

pub mod multihop;
pub mod path_finder;

pub use multihop::{
    property_chain_rule, symmetry_rule, transitivity_rule, GraphEdge,
    HopPath as MultiHopPathResult, MultiHopConfig, MultiHopEngine, PathScoringFn,
};
pub use path_finder::{
    HopPath, KnowledgeGraph, MultiHopPathFinder, MultiHopReasoningConfig, PathScoring,
};