LangChain - Conversational RAG
Given the following code snippet, what will be the output after the second question?
from langchain.chains import ConversationChain
from langchain.memory import ConversationBufferMemory
llm = SomeLLM()
memory = ConversationBufferMemory()
chain = ConversationChain(llm=llm, memory=memory)
print(chain.run("What is AI?"))
print(chain.run("And how does it learn?"))