From 52bd8fca5c553c3349645b381fd97909653ec630 Mon Sep 17 00:00:00 2001 From: dbcontributions Date: Mon, 30 Sep 2024 13:10:22 -0600 Subject: [PATCH] add-missing-response_format-parameter (#1927) --- mem0/llms/aws_bedrock.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mem0/llms/aws_bedrock.py b/mem0/llms/aws_bedrock.py index 2bc963c2..d56ff4a4 100644 --- a/mem0/llms/aws_bedrock.py +++ b/mem0/llms/aws_bedrock.py @@ -172,6 +172,7 @@ class AWSBedrockLLM(LLMBase): def generate_response( self, messages: List[Dict[str, str]], + response_format=None, tools: Optional[List[Dict]] = None, tool_choice: str = "auto", ):