From 8099d60e0e4a35fd1eb5736b06a3d114aecbf849 Mon Sep 17 00:00:00 2001 From: Mathew Shen Date: Thu, 5 Sep 2024 17:30:37 +0800 Subject: [PATCH] docs: fix docstring (#1816) --- mem0/llms/openai_structured.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mem0/llms/openai_structured.py b/mem0/llms/openai_structured.py index 8f184646..b713ed7e 100644 --- a/mem0/llms/openai_structured.py +++ b/mem0/llms/openai_structured.py @@ -25,7 +25,7 @@ class OpenAIStructuredLLM(LLMBase): Args: response: The raw response from API. - response_format: The format in which the response should be processed. + tools (list, optional): List of tools that the model can call. Returns: str or dict: The processed response.