RAG / src /memory.py
Rahbarnisa's picture
Upload 21 files
4321589 verified
raw
history blame contribute delete
204 Bytes
chat_history = []
def add_to_memory(user_input, bot_response):
chat_history.append({
"user": user_input,
"bot": bot_response
})
def get_memory():
return chat_history