LangChain - Agents
Why does this code raise an error?
schema = {"input": "question", "output": "answer"}
agent = StructuredChatAgent(schema=schema, llm=llm)
response = agent.run({"query": "Hi"})
print(response)