From 60dd13f17e43624cf0b6d5d2d4c63ed267957765 Mon Sep 17 00:00:00 2001 From: zrguo Date: Mon, 17 Mar 2025 16:58:04 +0800 Subject: [PATCH] fix continue prompt format error --- lightrag/operate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/operate.py b/lightrag/operate.py index 1815f308..d062ae73 100644 --- a/lightrag/operate.py +++ b/lightrag/operate.py @@ -404,7 +404,7 @@ async def extract_entities( language=language, ) - continue_prompt = PROMPTS["entity_continue_extraction"] + continue_prompt = PROMPTS["entity_continue_extraction"].format(**context_base) if_loop_prompt = PROMPTS["entity_if_loop_extraction"] processed_chunks = 0