From e5810869991dfe0720c34854a2857cb987eb66fe Mon Sep 17 00:00:00 2001 From: Shroominic Date: Sat, 17 Feb 2024 18:35:36 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20Update=20import=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/funcchain/model/abilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/funcchain/model/abilities.py b/src/funcchain/model/abilities.py index a796344..82c3b56 100644 --- a/src/funcchain/model/abilities.py +++ b/src/funcchain/model/abilities.py @@ -29,7 +29,7 @@ def gather_llm_type(llm: BaseChatModel, func_check: bool = True) -> str: - from langchain_openai.chat_models import ChatOpenAI + from .patches import ChatOpenAI if not isinstance(llm, BaseChatModel): return "base_model"