from langchain_experimental.utilities import PythonREPL python_repl = PythonREPL() resp = python_repl.run("print(1+1)") print(resp) 返回
from langchain_experimental.utilities import PythonREPL
python_repl = PythonREPL()
resp = python_repl.run("print(1+1)")
print(resp)返回
