graphrag-cli 0.2.0

Modern Terminal User Interface (TUI) for GraphRAG operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! GraphRAG CLI binary entry point.
//!
//! All logic lives in the library crate (`graphrag_cli::run`).

#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;

#[tokio::main]
async fn main() -> color_eyre::eyre::Result<()> {
    // color_eyre is installed once inside `run()` (shared with the `graphrag`
    // meta-crate binary). Installing here too double-installs and aborts.
    graphrag_cli::run().await
}