From 7588b0933dee0fd42914fcd1e38b7b043121b47f Mon Sep 17 00:00:00 2001 From: anubhavgirdhar1 Date: Thu, 30 Oct 2025 15:59:45 +0100 Subject: [PATCH] chore: adding support for aws bedrock using boto3, more inclined towards anthropic models provided by aws --- graphiti_core/llm_client/aws_anthropic_client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/graphiti_core/llm_client/aws_anthropic_client.py b/graphiti_core/llm_client/aws_anthropic_client.py index edae991c..525f7bcb 100644 --- a/graphiti_core/llm_client/aws_anthropic_client.py +++ b/graphiti_core/llm_client/aws_anthropic_client.py @@ -25,6 +25,7 @@ from .openai_base_client import BaseOpenAIClient logger = logging.getLogger(__name__) +# bedrock support :) cuz i really wanted it. class BedrockAnthropicLLMClient(BaseOpenAIClient): MAX_RETRIES: ClassVar[int] = 2