LangChain - Agents
Given this code snippet, what will be the output behavior of the ReAct agent?
from langchain.agents import ReActAgent
from langchain.llms import OpenAI
llm = OpenAI(temperature=0)
tools = [search_tool, calculator_tool]
agent = ReActAgent(llm=llm, tools=tools)
response = agent.run('What is the capital of France and what is 5 plus 3?')