From 3820988cb38e0722e8a7b6723fb529d861b2b388 Mon Sep 17 00:00:00 2001 From: Andrej Milicevic Date: Thu, 15 Jan 2026 20:34:39 +0100 Subject: [PATCH] fix: fix session tests --- 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 5c0dde0df..eec8ba101 100644 --- a/cognee/modules/retrieval/graph_completion_cot_retriever.py +++ b/cognee/modules/retrieval/graph_completion_cot_retriever.py @@ -171,11 +171,11 @@ class GraphCompletionCotRetriever(GraphCompletionRetriever): async def get_completion( self, query: Optional[str] = None, - query_batch: Optional[List[str]] = None, context: Optional[List[Edge]] = None, session_id: Optional[str] = None, max_iter=4, response_model: Type = str, + query_batch: Optional[List[str]] = None, ) -> List[Any]: """ Generate completion responses based on a user query and contextual information.