From c3ac6b098ee73a17baa63f3c6775d1c53e5d49ca Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Mon, 29 Jul 2024 17:19:28 -0700 Subject: [PATCH] fix linting error - cohere_chat --- litellm/llms/cohere_chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/llms/cohere_chat.py b/litellm/llms/cohere_chat.py index 1b4e0d7980..9321d6f8b3 100644 --- a/litellm/llms/cohere_chat.py +++ b/litellm/llms/cohere_chat.py @@ -235,7 +235,7 @@ def completion( optional_params["message"] = most_recent_message data = { "model": model, - "chat_history": chat_histrory, + "chat_history": chat_history, **optional_params, }