Update ToDo.md
Browse files
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:
|
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 |
|