I developed a backend application that connects to OpenAI’s realtime socket.
This backend serves many users at the same time through mobile applications.(For example, we can think of them as students doing speaking exercises.)
While reading the Realtime API documentation, I came across that each socket connection is a session. Can I provide speech service to multiple users at the same time over a single socket connection? I would like your suggestions on this matter.
I designed a similar code structure thinking about this, I will try concurrent 1000 connections tomorrow, I hope I will not experience any restrictions in this regard.