LangChain - Conversational RAG
Identify the error in this LangChain code snippet for question reformulation with history:
from langchain.chains import ConversationChain
from langchain.memory import ConversationBufferMemory
llm = SomeLLM()
chain = ConversationChain(llm=llm, memory=ConversationBufferMemory)
response = chain.run("Explain machine learning.")
print(response)