Sfoglia il codice sorgente

Fix: empty description (#5747)

### What problem does this PR solve?

#5705

### Type of change

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

+ 1
- 1
graphrag/search.py Vedi File

@@ -228,7 +228,7 @@ class KGSearch(Dealer):
ents.append({
"Entity": n,
"Score": "%.2f" % (ent["sim"] * ent["pagerank"]),
"Description": json.loads(ent["description"]).get("description", "")
"Description": json.loads(ent["description"]).get("description", "") if ent["description"] else ""
})
max_token -= num_tokens_from_string(str(ents[-1]))
if max_token <= 0:

Loading…
Annulla
Salva