Request for Feedback on LazyGraphRAG Implementation #2061
Unanswered
sagarpurohit88
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello Everyone,
I am currently working on building a LazyGraphRAG system for internal documentation.
Problem Statement:
Although the LazyGraphRAG design is intended to be dynamic and efficient, the initial query retrieval is taking approximately 22 minutes. This time includes generating embeddings, constructing communities, and extracting relationships. For subsequent (follow-up) queries, the retrieval time is reduced to around 1 minute, since only embeddings need to be built.
I would like to better understand:
For context, I have included below a detailed breakdown of the complete LazyGraphRAG flow, outlining each component and how they interact within the system.
Stage 1
Stage 2
Stage 3
Stage 4
Query Processing Flow
The system runs three parallel retrieval strategies:
A. Semantic Retrieval
B. Graph Traversal
C. Community Analysis
Result Fusion
Answer Generation
Complete Data Flow Example
Beta Was this translation helpful? Give feedback.
All reactions