Skip to main content

graphrag/
lib.rs

1//! # graphrag
2//!
3//! Meta-crate that re-exports [`graphrag_core`] for library users and provides
4//! the `graphrag` binary (backed by [`graphrag_cli`]).
5//!
6//! ## Installation
7//!
8//! ```bash
9//! cargo install graphrag
10//! ```
11//!
12//! This installs the `graphrag` binary which is the full-featured TUI and CLI
13//! for GraphRAG operations.
14//!
15//! ## Library usage
16//!
17//! ```toml
18//! [dependencies]
19//! graphrag = "0.1"
20//! ```
21//!
22//! All types from `graphrag-core` are re-exported:
23//!
24//! ```rust,no_run
25//! use graphrag::GraphRAG;
26//! ```
27
28pub use graphrag_core::*;