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 18
18
from langchain .chains .loading import load_chain_from_config
19
19
from langchain .llms import loading
20
20
from langchain .load import dumpd
21
- from langchain .load .load import load as lc_load
21
+ from langchain .load .load import load as __lc_load
22
22
from langchain .load .load import Reviver
23
23
from langchain .load .serializable import Serializable
24
24
from langchain .vectorstores import FAISS , OpenSearchVectorSearch
@@ -236,7 +236,7 @@ def _load(obj: Any) -> Any:
236
236
# Legacy chain
237
237
return load_chain_from_config (obj , ** kwargs )
238
238
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 )
240
240
241
241
242
242
def load_from_yaml (
You can’t perform that action at this time.
0 commit comments