`audio: [...new Uint8Array(audioData)],` is copying the array right? So this gets you very close to

audio: [...new Uint8Array(audioData)], is copying the array right? So this gets you very close to the limit, and if you have more than 1 request, then you will exceed it easily.
Avoid making full copies of such large items in memory.
Was this page helpful?