LangChain - Agents
Given this tool definition and agent call:
What is the value of
from langchain.tools import Tool my_tool = Tool(name='add', func=lambda x: x + 5) result = my_tool.func(10)
What is the value of
result?