Spaces:
Running
on
Zero
Running
on
Zero
File size: 180 Bytes
76df764 |
1 2 3 4 5 |
from langchain.memory import ConversationBufferMemory
# Memory for storing conversation history
memory = ConversationBufferMemory(memory_key="chat_history", return_messages=True)
|