File size: 221 Bytes
b303183
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# Stores chat history
class ConversationHistory:
    def __init__(self):
        self.history = []

    def store(self, user_input):
        self.history.append(user_input)

    def get(self):
        return self.history