From b076078e4ff77c827c9af99b1a3e4d332955e976 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Tue, 5 Aug 2025 20:25:42 +0200 Subject: [PATCH] fix: Resolve issue with LLMAdapter calling wrong method --- cognee/modules/retrieval/graph_completion_cot_retriever.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cognee/modules/retrieval/graph_completion_cot_retriever.py b/cognee/modules/retrieval/graph_completion_cot_retriever.py index 3ce480ab5..52f62e50b 100644 --- a/cognee/modules/retrieval/graph_completion_cot_retriever.py +++ b/cognee/modules/retrieval/graph_completion_cot_retriever.py @@ -114,7 +114,7 @@ class GraphCompletionCotRetriever(GraphCompletionRetriever): prompt_file_name=self.followup_system_prompt_path ) - followup_question = await LLMAdapter.llm_client.acreate_structured_output( + followup_question = await LLMAdapter.acreate_structured_output( text_input=followup_prompt, system_prompt=followup_system, response_model=str ) logger.info(