From 32bdb3a297b5bd3acb3e329b90c53cb9d9f50b40 Mon Sep 17 00:00:00 2001 From: tonaerospace Date: Fri, 20 Oct 2023 07:09:16 +0000 Subject: [PATCH] update --- src/interface.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interface.jl b/src/interface.jl index f67390a..fd1ab2f 100644 --- a/src/interface.jl +++ b/src/interface.jl @@ -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