JBHF commited on
Commit
f90cdcd
1 Parent(s): 10cdfa7

Update ToDo.md

Browse files
Files changed (1) hide show
  1. ToDo.md +10 -1
ToDo.md CHANGED
@@ -366,9 +366,18 @@ st.latex(r''' a+a r^1+a r^2+a r^3 ''')
366
 
367
  - Show the complete history of questions and answers:
368
 
369
- - Gewoon chat venster met weergave van complete chat history in de actuele sessie: reeds gedaan
370
  - ToDo: save session chat history from user + AI in a messages list (and persistently save them !)
371
 
 
 
 
 
 
 
 
 
 
372
  ...
373
 
374
 
 
366
 
367
  - Show the complete history of questions and answers:
368
 
369
+ - Gewoon chat venster met weergave van complete chat history in de actuele sessie: DONE
370
  - ToDo: save session chat history from user + AI in a messages list (and persistently save them !)
371
 
372
+ Done (persistence not yet done !):
373
+
374
+ # Show total messages history of user + AI in this session up till this point
375
+ with st.expander("Show total messages history of user + AI in this session up till this point"):
376
+ # st.session_state.messages
377
+ st.write(st.session_state.messages)
378
+ st.write("--------------------------------")
379
+
380
+
381
  ...
382
 
383