Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -58,8 +58,7 @@ def store_message(chatinput: str, chatresponse: str):
|
|
| 58 |
|
| 59 |
now = datetime.now() # current time in UTC
|
| 60 |
aus_time = now.astimezone(AUS_TIMEZONE) # convert to Australia timezone
|
| 61 |
-
|
| 62 |
-
timestamp = aus_time.now().strftime("%Y-%m-%d %H:%M:%S")
|
| 63 |
user_input = f"User: {chatinput}"
|
| 64 |
chatbot_response = f"Chatbot: {chatresponse}"
|
| 65 |
separator = "-" * 30
|
|
|
|
| 58 |
|
| 59 |
now = datetime.now() # current time in UTC
|
| 60 |
aus_time = now.astimezone(AUS_TIMEZONE) # convert to Australia timezone
|
| 61 |
+
timestamp = aus_time.strftime("%Y-%m-%d %H:%M:%S")
|
|
|
|
| 62 |
user_input = f"User: {chatinput}"
|
| 63 |
chatbot_response = f"Chatbot: {chatresponse}"
|
| 64 |
separator = "-" * 30
|