Relative Content

Tag Archive for python-3.xflasksession-variablesflask-session

Flask session variable not saving within generator function

I am using flask. Below is the relevant lines of code as an example only. I essentially need to save chat history for an LLM in a session variable to avoid having to do it in a data-table per user. Session variable would just work wonderfully here. Problem is, I have a generator function that yeilds the Chatbot LLM stream back to a javascript reader in the users view and it seems that saving session variables within generator functions just doesnt work easily. Did allot of reading and came up with the below that was supposed to fix this issue but still no luck. I am now able to access my session variable in the nested function (stream_with_context fixed that) but I cannot save it. Please help!