diff --git a/libs/community/langchain_community/llms/bigdl_llm.py b/libs/community/langchain_community/llms/bigdl_llm.py index 18decd814fcbb..9b9bf9f30107c 100644 --- a/libs/community/langchain_community/llms/bigdl_llm.py +++ b/libs/community/langchain_community/llms/bigdl_llm.py @@ -1,9 +1,10 @@ import logging from typing import Any, Optional -from langchain_community.llms.ipex_llm import IpexLLM from langchain_core.language_models.llms import LLM +from langchain_community.llms.ipex_llm import IpexLLM + logger = logging.getLogger(__name__) class BigdlLLM(IpexLLM):