From c98bf1d985a66be8faa1d220edeee0770559dec7 Mon Sep 17 00:00:00 2001 From: Andrej Milicevic Date: Mon, 15 Sep 2025 16:08:42 +0200 Subject: [PATCH] fix: Fixed formatting --- .../litellm_instructor/llm/anthropic/adapter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/llm/anthropic/adapter.py b/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/llm/anthropic/adapter.py index d1e7b0d18..b079924be 100644 --- a/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/llm/anthropic/adapter.py +++ b/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/llm/anthropic/adapter.py @@ -28,7 +28,8 @@ class AnthropicAdapter(LLMInterface): import anthropic self.aclient = instructor.patch( - create=anthropic.AsyncAnthropic(api_key=get_llm_config().llm_api_key).messages.create, mode=instructor.Mode.ANTHROPIC_TOOLS + create=anthropic.AsyncAnthropic(api_key=get_llm_config().llm_api_key).messages.create, + mode=instructor.Mode.ANTHROPIC_TOOLS, ) self.model = model