From e4a5869a437eb7836a9484178470774e504cbcf4 Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Thu, 28 Aug 2025 10:55:26 +0200 Subject: [PATCH] fix: fix graph promp path in event graph task --- .../extraction/knowledge_graph/extract_event_graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/extraction/knowledge_graph/extract_event_graph.py b/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/extraction/knowledge_graph/extract_event_graph.py index 0373649f2..667e2eb7d 100644 --- a/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/extraction/knowledge_graph/extract_event_graph.py +++ b/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/extraction/knowledge_graph/extract_event_graph.py @@ -15,7 +15,7 @@ async def extract_event_graph( llm_config = get_llm_config() - prompt_path = llm_config.graph_prompt_path + prompt_path = llm_config.temporal_graph_prompt_path # Check if the prompt path is an absolute path or just a filename if os.path.isabs(prompt_path):