From 2539c61dafc21018976bb88c55d0cc436541c63c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Juvenal?= Date: Thu, 20 Jun 2024 09:44:03 -0300 Subject: [PATCH] Fix typo --- django_ai_assistant/helpers/assistants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django_ai_assistant/helpers/assistants.py b/django_ai_assistant/helpers/assistants.py index 68977df..8a89cc0 100644 --- a/django_ai_assistant/helpers/assistants.py +++ b/django_ai_assistant/helpers/assistants.py @@ -378,9 +378,9 @@ def get_contextualize_prompt(self) -> ChatPromptTemplate: return ChatPromptTemplate.from_messages( [ ("system", contextualize_q_system_prompt), - # TODO: make history key confirgurable? + # TODO: make history key configurable? MessagesPlaceholder("history"), - # TODO: make input key confirgurable? + # TODO: make input key configurable? ("human", "{input}"), ] )