This commit is contained in:
2023-10-20 07:09:16 +00:00
parent 77b982e62e
commit 32bdb3a297

View File

@@ -12,8 +12,8 @@ function __init__()
# PythonCall.pycopy!(py_cv2, pyimport("cv2"))
# equivalent to from urllib.request import urlopen in python
PythonCall.pycopy!(py_agents, pyimport("langchain" => "agents"))
PythonCall.pycopy!(py_llms, pyimport("langchain" => "llms"))
PythonCall.pycopy!(py_agents, pyimport("langchain.agents"))
PythonCall.pycopy!(py_llms, pyimport("langchain.llms"))
end
#------------------------------------------------------------------------------------------------100