From 2d9a09dfa423add90496f2612b91e1cc286228e9 Mon Sep 17 00:00:00 2001 From: Youshin Kim Date: Fri, 27 Sep 2024 21:41:39 +0900 Subject: [PATCH] Fix typo in mlflow code example in mlflow.py (#26931) - [x] PR title: Fix typo in code example in mlflow.py - In libs/community/langchain_community/chat_models/mlflow.py --- libs/community/langchain_community/chat_models/mlflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/community/langchain_community/chat_models/mlflow.py b/libs/community/langchain_community/chat_models/mlflow.py index 9a1c528fd75..74d89490b7d 100644 --- a/libs/community/langchain_community/chat_models/mlflow.py +++ b/libs/community/langchain_community/chat_models/mlflow.py @@ -68,7 +68,7 @@ class ChatMlflow(BaseChatModel): chat = ChatMlflow( target_uri="http://localhost:5000", endpoint="chat", - temperature-0.1, + temperature=0.1, ) """