diff --git a/index.html b/index.html index ca4310a4..57f0fc47 100644 --- a/index.html +++ b/index.html @@ -270,7 +270,8 @@ a {

Welcome to GraphRAG

-

👉 GitHub Repository

+

👉 Microsoft Research Blog Post
+👉 GitHub Repository

Figure 1: LLM-generated knowledge graph built from a private dataset using GPT-4 Turbo.

@@ -279,6 +280,7 @@ Figure 1: An LLM-generated knowledge graph built using GPT-4 Turbo.

GraphRAG is a structured, hierarchical approach to Retrieval Augmented Generation (RAG), as opposed to naive semantic-search approaches using plain text snippets. The GraphRAG process involves extracting a knowledge graph out of raw text, building a community hierarchy, generating summaries for these communities, and then leveraging these structures when perform RAG-based tasks.

+

To learn more about GraphRAG and how it can be used to enhance your LLMs ability to reason about your private data, please visit the Microsoft Research Blog Post.

Get Started 🚀

To start using GraphRAG, check out the Get Started guide. For a deeper dive into the main sub-systems, please visit the docpages for the Indexer and Query packages.

@@ -304,6 +306,9 @@ For a deeper dive into the main sub-systems, please visit the docpages for the <
  • Global Search for reasoning about holistic questions about the corpus by leveraging the community summaries.
  • Local Search for reasoning about specific entities by fanning-out to their neighbors and associated concepts.
  • +

    Prompt Tuning

    +

    Using GraphRAG with your data out of the box may not yield the best possible results. +We strongly recommend to fine-tune your prompts following the Prompt Tuning Guide in our documentation.

    diff --git a/posts/developing/index.html b/posts/developing/index.html index c23ecf77..cc5c3ab6 100644 --- a/posts/developing/index.html +++ b/posts/developing/index.html @@ -364,6 +364,9 @@ poetry install

    "numba/_pymodule.h:6:10: fatal error: Python.h: No such file or directory" when running poetry install

    Make sure you have python3.10-dev installed or more generally python<version>-dev

    sudo apt-get install python3.10-dev

    +

    LLM call constantly exceeds TPM, RPM or time limits

    +

    GRAPHRAG_LLM_THREAD_COUNT and GRAPHRAG_EMBEDDING_THREAD_COUNT are both set to 50 by default. You can modify this values +to reduce concurrency. Please refer to the Configuration Documents