JBHF commited on
Commit
4465bf6
1 Parent(s): f4ebe7b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py CHANGED
@@ -398,6 +398,16 @@ if prompt := st.chat_input():
398
  st.write(doc.page_content)
399
  st.write("--------------------------------")
400
 
 
 
 
 
 
 
 
 
 
 
401
  st.write("---------------------------------")
402
 
403
 
 
398
  st.write(doc.page_content)
399
  st.write("--------------------------------")
400
 
401
+
402
+
403
+ # Show total messages history of user + AI in this session up till this point
404
+ with st.expander("Show total messages history of user + AI in this session up till this point")
405
+ # st.session_state.messages
406
+ st.write(st.session_state.messages)
407
+ st.write("--------------------------------")
408
+
409
+
410
+
411
  st.write("---------------------------------")
412
 
413