Sfoglia il codice sorgente

Fix keyerror issue while rebuilding graph. (#5022)

### What problem does this PR solve?

#4995

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.17.0
Kevin Hu 8 mesi fa
parent
commit
f29da49893
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      graphrag/utils.py

+ 1
- 1
graphrag/utils.py Vedi File

@@ -540,7 +540,7 @@ def rebuild_graph(tenant_id, kb_id):
src_ids.extend(d.get("source_id", []))
if d["knowledge_graph_kwd"] == "entity":
graph.add_node(d["entity_kwd"], entity_type=d["entity_type_kwd"])
else:
elif "from_entity_kwd" in d and "to_entity_kwd" in d:
graph.add_edge(
d["from_entity_kwd"],
d["to_entity_kwd"],

Loading…
Annulla
Salva