Skip to content

Commit

Permalink
fix: update operate.py
Browse files Browse the repository at this point in the history
1. 避免变量在赋值之前就被引用
2. 解决未找到entity返回None导致的unpack问题
  • Loading branch information
tjyiiuan committed Dec 12, 2024
1 parent 3e33cfc commit aac26b0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lightrag/operate.py
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,9 @@ async def _build_query_context(
text_chunks_db: BaseKVStorage[TextChunkSchema],
query_param: QueryParam,
):
# ll_entities_context, ll_relations_context, ll_text_units_context = "", "", ""
# hl_entities_context, hl_relations_context, hl_text_units_context = "", "", ""

ll_kewwords, hl_keywrds = query[0], query[1]
if query_param.mode in ["local", "hybrid"]:
if ll_kewwords == "":
Expand Down Expand Up @@ -686,7 +689,7 @@ async def _get_node_data(
# get similar entities
results = await entities_vdb.query(query, top_k=query_param.top_k)
if not len(results):
return None
return "", "", ""
# get entity information
node_datas = await asyncio.gather(
*[knowledge_graph_inst.get_node(r["entity_name"]) for r in results]
Expand Down

0 comments on commit aac26b0

Please sign in to comment.