File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1818from langchain .chains .loading import load_chain_from_config
1919from langchain .llms import loading
2020from langchain .load import dumpd
21- from langchain .load .load import load as lc_load
21+ from langchain .load .load import load as __lc_load
2222from langchain .load .load import Reviver
2323from langchain .load .serializable import Serializable
2424from langchain .vectorstores import FAISS , OpenSearchVectorSearch
@@ -236,7 +236,7 @@ def _load(obj: Any) -> Any:
236236 # Legacy chain
237237 return load_chain_from_config (obj , ** kwargs )
238238
239- return lc_load (obj , secrets_map = secrets_map , valid_namespaces = valid_namespaces )
239+ return __lc_load (obj , secrets_map = secrets_map , valid_namespaces = valid_namespaces )
240240
241241
242242def load_from_yaml (
You can’t perform that action at this time.
0 commit comments