LangChain - Agents
Given this code snippet, what will be the output when the agent is run with input 'Hello'?
from langchain.chat_models import ChatOpenAI
from langchain.agents import StructuredChatAgent
llm = ChatOpenAI(temperature=0)
agent = StructuredChatAgent(llm=llm)
response = agent.invoke({'input': 'Hello'})
print(response['output'])