--- title: Indexer CLI navtitle: CLI layout: page tags: [post, indexing] date: 2023-01-03 --- The GraphRAG indexer CLI allows for no-code usage of the GraphRAG Indexer. ```bash python -m graphrag.index --verbose --root --config --resume --reporter --emit json,csv,parquet --nocache ``` ## CLI Arguments - `--verbose` - Adds extra logging information during the run. - `--root ` - the data root directory. This should contain an `input` directory with the input data, and an `.env` file with environment variables. These are described below. - `--init` - This will initialize the data project directory at the specified `root` with bootstrap configuration and prompt-overrides. - `--resume ` - if specified, the pipeline will attempt to resume a prior run. The parquet files from the prior run will be loaded into the system as inputs, and the workflows that generated those files will be skipped. The input value should be the timestamped output folder, e.g. "20240105-143721". - `--config ` - This will opt-out of the Default Configuration mode and execute a custom configuration. If this is used, then none of the environment-variables below will apply. - `--reporter ` - This will specify the progress reporter to use. The default is `rich`. Valid values are `rich`, `print`, and `none`. - `--emit ` - This specifies the table output formats the pipeline should emit. The default is `parquet`. Valid values are `parquet`, `csv`, and `json`, comma-separated. - `--nocache` - This will disable the caching mechanism. This is useful for debugging and development, but should not be used in production.