From 528602666efdaadcff6162a4ef57a94c88b593ab Mon Sep 17 00:00:00 2001 From: Filipe Ximenes Date: Thu, 12 Sep 2024 15:28:22 -0300 Subject: [PATCH] removes misleading comment in get_structured_output_llm --- django_ai_assistant/helpers/assistants.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django_ai_assistant/helpers/assistants.py b/django_ai_assistant/helpers/assistants.py index bdbed13..3810337 100644 --- a/django_ai_assistant/helpers/assistants.py +++ b/django_ai_assistant/helpers/assistants.py @@ -279,7 +279,6 @@ def get_llm(self) -> BaseChatModel: def get_structured_output_llm(self) -> Runnable: """Get the LLM model to use for the structured output. - By default, this is the `get_llm` method. Returns: BaseChatModel: The LLM model to use for the structured output.