You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 6, 2025. It is now read-only.
I follow the workflow, insert content to lancedb and kuzudb, and vector_rag runs as expected. But when I run graph_rag.py, it seems that something wrong about the kuzudb storage since all questions cannot retrieve anything in kuzudb.
MATCH (p:PERSON)-[:LINKS_PERSON_ORGANIZATION]->(o:ORGANIZATION {name: 'BlackRock'})
RETURN p.name AS founder_name
ORDER BY founder_name;
Q1: Who are the founders of BlackRock? Return the names as a numbered list.
The provided context does not contain any information about the founders of BlackRock. Therefore, I cannot provide a numbered list of the founders based on the given context. If you have additional information or context, please share it, and I will do my best to assist you.
---
MATCH (p:PERSON {name: "Larry Fink"})-[:LINKS_PERSON_UNIVERSITY]->(u:UNIVERSITY)
RETURN u.name;
Q2: Where did Larry Fink graduate from?
Based on the provided context, there is no information available about where Larry Fink graduated from. Therefore, I cannot provide an answer to this question.
---
...