graphrag 0.2.0

GraphRAG - Knowledge Graph RAG: meta-crate that bundles graphrag-core and graphrag-cli
Documentation
1
2
3
4
5
6
//! `graphrag` binary entry point — delegates to graphrag-cli.

#[tokio::main]
async fn main() -> color_eyre::eyre::Result<()> {
    graphrag_cli::run().await
}