Skip to content

Commit

Permalink
Robust for abnormal response from LLMs. (#4747)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?


### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
  • Loading branch information
KevinHuSh authored Feb 6, 2025
1 parent e786f59 commit 448fa1c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions graphrag/general/community_reports_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ def __call__(self, graph: nx.Graph, callback: Callable | None = None):
ent_df["entity"] = ent_df["entity_name"]
del ent_df["entity_name"]
rela_df = pd.DataFrame(self._get_relation_(list(ent_df["entity"]), list(ent_df["entity"]), 10000))
if rela_df.empty:
continue
rela_df["source"] = rela_df["src_id"]
rela_df["target"] = rela_df["tgt_id"]
del rela_df["src_id"]
Expand Down
6 changes: 4 additions & 2 deletions graphrag/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ def retrieval(self, question: str,
tenant_ids = tenant_ids.split(",")
idxnms = [index_name(tid) for tid in tenant_ids]
ty_kwds = []
ents = []
try:
ty_kwds, ents = self.query_rewrite(llm, qst, [index_name(tid) for tid in tenant_ids], kb_ids)
logging.info(f"Q: {qst}, Types: {ty_kwds}, Entities: {ents}")
Expand All @@ -169,6 +168,9 @@ def retrieval(self, question: str,
nhop_pathes = defaultdict(dict)
for _, ent in ents_from_query.items():
nhops = ent.get("n_hop_ents", [])
if not isinstance(nhops, list):
logging.warning(f"Abnormal n_hop_ents: {nhops}")
continue
for nbr in nhops:
path = nbr["path"]
wts = nbr["weights"]
Expand Down Expand Up @@ -246,7 +248,7 @@ def retrieval(self, question: str,
"From Entity": f,
"To Entity": t,
"Score": "%.2f" % (rel["sim"] * rel["pagerank"]),
"Description": json.loads(ent["description"]).get("description", "")
"Description": json.loads(rel["description"]).get("description", "")
})
max_token -= num_tokens_from_string(str(relas[-1]))
if max_token <= 0:
Expand Down
6 changes: 3 additions & 3 deletions rag/nlp/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,14 +388,14 @@ def retrieval(self, question, embd_mdl, tenant_ids, kb_ids, page, page_size, sim
break
id = sres.ids[i]
chunk = sres.field[id]
dnm = chunk["docnm_kwd"]
did = chunk["doc_id"]
dnm = chunk.get("docnm_kwd", "")
did = chunk.get("doc_id", "")
position_int = chunk.get("position_int", [])
d = {
"chunk_id": id,
"content_ltks": chunk["content_ltks"],
"content_with_weight": chunk["content_with_weight"],
"doc_id": chunk["doc_id"],
"doc_id": did,
"docnm_kwd": dnm,
"kb_id": chunk["kb_id"],
"important_kwd": chunk.get("important_kwd", []),
Expand Down

0 comments on commit 448fa1c

Please sign in to comment.