-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
Do you need to ask a question?
- I have searched the existing question and discussions and this question is not already answered.
- I believe this is a legitimate question, not just a bug or feature request.
Your Question
Hi LightRAG team 👋,
First, thanks for releasing such a clean and practical RAG framework—its dual-level retrieval has been working great for us!
While reviewing the indexing flow I noticed that
- entity / relation extraction is performed within each chunk only;
- during graph construction, entities deduplicated by
D(·)become shared nodes, but no new edges are created between entities that never co-occur in the same chunk.
I’d love to understand the design rationale and its impact on deeper reasoning:
-
Why omit explicit cross-chunk edge creation?
- Is the main goal to avoid graph explosion, reduce LLM calls, minimise hallucination risk, or something else?
-
Multi-hop coverage
- In practice, does the current dual-level retrieval (low-level 1-hop + high-level keyword expansion) capture >2-hop relations reliably when the entities never appeared together?
- Have you benchmarked long-range queries that depend on such paths (e.g. linking characters introduced in different chapters of a novel)?
-
Possible extensions
-
Would the project welcome an option to add lightweight cross-chunk edges, such as:
- coreference-resolved “same entity” links
- “same paragraph / same section” contextual edges
- LLM-inferred relations between high-frequency entity pairs across chunks
-
Prompting an LLM on a vector‑based top‑k chunk set to infer cross‑chunk relations
Any insights, papers, or code pointers would be greatly appreciated.
Thanks again for the excellent work!
-
Best regards,
SangwookBaek
Additional Context
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested