So I’m building a AI chat interface and it’s currently working well, but a bit clunky due to how I have to handle streaming.
I have a stream_array and a current_conversation variable, currently I have to work around it to update the current_conversation variable AFTER the stream is completed - which sort of defeats the purpose of streaming IMO.
Is there a nice way or workaround (using ww.variables for example) to stream the Xano output to the end of my curren_conversation array for example? Or alternatively, a best practise for handling streams for a AI chat interface.