Update app.py
Browse files
app.py
CHANGED
@@ -191,7 +191,7 @@ class ChatbotAPP:
|
|
191 |
temp_history=[]
|
192 |
output = "Did you forget to Agree to the Terms and Conditions?"
|
193 |
temp_history.append((prompt,output))
|
194 |
-
return
|
195 |
|
196 |
def update_chatlog_name(self):
|
197 |
self.chat_log_name = f'chat_log_for_{self.unique_id}_{datetime.now().strftime("%Y-%m-%d_%H-%M-%S")}.json'
|
|
|
191 |
temp_history=[]
|
192 |
output = "Did you forget to Agree to the Terms and Conditions?"
|
193 |
temp_history.append((prompt,output))
|
194 |
+
return temp_history
|
195 |
|
196 |
def update_chatlog_name(self):
|
197 |
self.chat_log_name = f'chat_log_for_{self.unique_id}_{datetime.now().strftime("%Y-%m-%d_%H-%M-%S")}.json'
|