LangChain - Agents
Given this code snippet, what will be the output when the user inputs "What is the weather?"?
schema = {
"input": "question",
"output": "answer"
}
agent = StructuredChatAgent(schema=schema, llm=llm)
response = agent.run({"question": "What is the weather?"})
print(response)