Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.24 KB

README.md

File metadata and controls

43 lines (28 loc) · 1.24 KB

Graph RAG

GraphRAG is a technique proposed by Microsoft Research to generate knowledge graphs from text using LLMs. This project is an implementation of GraphRAG in Python. It makes it simple to get up and running with GraphRAG and generate knowledge graphs from text. It also provides a semantic search interface to query the knowledge graph.

Install

This project uses uv for Python dependency management.

To install uv, follow the instructions here.

Install the dependencies with the following command:

uv run pip install

Usage

  1. Add the files you want to add to your knowledge graph in the data folder.

  2. Set your GOOGLE_API_KEY in the .env file. You can get it from here.

  3. Run the following command to generate the knowledge graph:

First, start the Chroma server:

chroma run --path db
python3 graph.py
  1. The knowledge graph will be saved in a chromadb database in the db folder. To query it, run
python3 query_cli.py
  1. To visualize the knowledge graph, run
streamlit run visualize.py