Welcome to GraphRAG
-👉 GitHub Repository
+👉 Microsoft Research Blog Post
+👉 GitHub Repository
diff --git a/index.html b/index.html
index ca4310a4..57f0fc47 100644
--- a/index.html
+++ b/index.html
@@ -270,7 +270,8 @@ a {
👉 GitHub Repository 👉 Microsoft Research Blog Post
Welcome to GraphRAG
-
+👉 GitHub Repository
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.
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 <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 installMake sure you have python3.10-dev installed or more generally python<version>-dev
sudo apt-get install python3.10-dev
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