LangChain - Agents
Given this code snippet, what will the ReAct agent do when asked a question?
tools = [SearchTool(), CalculatorTool()]
agent = initialize_agent(tools, llm, agent_type='react')
response = agent.run('What is 5 plus 3?')