graphrag-core 0.2.0

Core portable library for GraphRAG - works on native and WASM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Simplified APIs for different user experience levels
//!
//! This module provides progressive disclosure of GraphRAG functionality,
//! allowing users to start simple and add complexity as needed.

pub mod easy;
pub mod handlers;
pub mod rest;
pub mod simple;

#[cfg(test)]
mod tests;

// Re-export for convenience
pub use easy::SimpleGraphRAG;
pub use handlers::AppState;
pub use simple::*;