Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -89,6 +89,15 @@ def handle_query(query):
|
|
89 |
|
90 |
# Update current chat history
|
91 |
current_chat_history.append((query, response))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
return response
|
94 |
|
|
|
89 |
|
90 |
# Update current chat history
|
91 |
current_chat_history.append((query, response))
|
92 |
+
session_id = str(uuid.uuid4())
|
93 |
+
message_data = {
|
94 |
+
"sender": "user",
|
95 |
+
"history":current_chat_history,
|
96 |
+
"timestamp": datetime.datetime.now().isoformat() # Use a library like datetime
|
97 |
+
}
|
98 |
+
|
99 |
+
# Call the save function to store in Firebase with the generated session ID
|
100 |
+
save_chat_message(session_id, message_data)
|
101 |
|
102 |
return response
|
103 |
|