LangChain - Conversational RAG
Given this code snippet, what will
print(memory.load_memory_variables({})) output?
from langchain.memory import ConversationBufferMemory
memory = ConversationBufferMemory(return_messages=True)
memory.chat_memory.add_user_message('Hello')
memory.chat_memory.add_ai_message('Hi there!')