Which LangChain memory type stores the entire conversation history as a list of messages and is best for simple, short conversations?
BufferMemory stores the complete list of messages.
Why this answer
ConversationBufferMemory stores the full history, making it suitable for short dialogues but not for long ones due to token limits.