Xano x Weweb: How to stream json - array of objects?

Hey! I have an array of objects that I want to stream over to Weweb.

So the code I am passing over is an array of hook objects with 2 keys. Open AI returns an array of 5 hooks i am streaming over to weweb from xano.

Normally, I bind the array to a container and weweb displays the array of hooks nicely.

This is an example of the json being passed over:

[
{
“hook”: “”,
“hook_reference”: “”,
}
// Add more objects for more hooks, following the same structure
]

But how do I do that now, with streaming enabled? The hooks are rather long and I want to display each hook as they appear…

Currently how I am doing it, is that I stream it to an array variable in weweb using the Xano plaugin, and then join them all together. But then the browser crashes…? and nothing is displayed.