LangChain - Conversational RAG
Given this code snippet, what will be the reformulated question after the second user input?
memory = ConversationBufferMemory()
chain = ConversationChain(llm=llm, memory=memory)
chain.run("Who won the world cup in 2018?")
chain.run("Where was it held?")