Skip to content

A minimal implementation of GraphRAG, designed to quickly prototype whether you're able to get good sense-making out of a large dataset with creation of a knowledge graph.

Notifications You must be signed in to change notification settings

khoj-ai/knowledge-graph

Repository files navigation

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:

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

About

A minimal implementation of GraphRAG, designed to quickly prototype whether you're able to get good sense-making out of a large dataset with creation of a knowledge graph.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages