Spaces:
Runtime error
Runtime error
| # 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 | |