Spaces:
Sleeping
Sleeping
yash
commited on
Commit
·
ac733b6
1
Parent(s):
54da33c
add print
Browse files
app.py
CHANGED
@@ -70,6 +70,9 @@ def chat(user_message,history,session):
|
|
70 |
history.append([user_message, assistant_message])
|
71 |
chat_session[session] = history
|
72 |
|
|
|
|
|
|
|
73 |
return history, ""
|
74 |
|
75 |
|
|
|
70 |
history.append([user_message, assistant_message])
|
71 |
chat_session[session] = history
|
72 |
|
73 |
+
print("USER : ",user_message)
|
74 |
+
print("ASSISTANT : ",assistant_message)
|
75 |
+
|
76 |
return history, ""
|
77 |
|
78 |
|