From 77b982e62e3d726fa79791c34273880106e248be Mon Sep 17 00:00:00 2001 From: tonaerospace Date: Fri, 20 Oct 2023 06:54:37 +0000 Subject: [PATCH] fix cv2 error --- src/interface.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.jl b/src/interface.jl index 4a8a223..f67390a 100644 --- a/src/interface.jl +++ b/src/interface.jl @@ -9,7 +9,7 @@ using JSON3, DataStructures, Dates, PythonCall const py_agents = PythonCall.pynew() const py_llms = PythonCall.pynew() function __init__() - PythonCall.pycopy!(py_cv2, pyimport("cv2")) + # PythonCall.pycopy!(py_cv2, pyimport("cv2")) # equivalent to from urllib.request import urlopen in python PythonCall.pycopy!(py_agents, pyimport("langchain" => "agents"))