File size: 204 Bytes
9a2d4ec
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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