graphrag
Meta-crate for GraphRAG — Knowledge Graph Retrieval-Augmented Generation in Rust.
It bundles the workspace into a single hello-world dependency: it re-exports
graphrag-core for library users and ships the
graphrag binary (the full TUI + CLI, backed by graphrag-cli).
Install the binary
This installs graphrag, the zero-config TUI and CLI:
Use as a library
[]
= "0.1"
Every public type from graphrag-core is re-exported, so use graphrag::* is all
you need:
use GraphRAG;
let mut rag = quick_start?;
let answer = rag.ask?;
println!;
# Ok::
Documentation
- graphrag-core README — full library API, config, feature flags.
- Workspace README — project overview, all crates, deployment options.
- HOW_IT_WORKS.md — the 7-stage pipeline explained.
License
Same as the workspace (see the root LICENSE).