You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm attempting to connect OpenAI's realtime-console directly to a WebSocket proxy service that I’ve deployed on AWS EC2. The proxy service forwards WebSocket messages between clients and OpenAI’s GPT model.
The WebSocket URL format I'm using is ws://{the_ip}:8000/ws.
I've tried setting REACT_APP_LOCAL_RELAY_SERVER_URL=ws://{the_ip}:8000/ws in the .env file, but I'm encountering errors like:
src/lib/wavtools/lib/analysis/audio_analysis.js
Line 203:1: 'globalThis' is not defined no-undef
also, on refresh
Could not connect to "ws://{the_ip}:8000/ws"
at WebSocket.connectionErrorHandler
Is this the correct way to configure the LOCAL_RELAY_SERVER_URL for the WebSocket proxy? Any guidance would be appreciated!
The text was updated successfully, but these errors were encountered:
I'm attempting to connect OpenAI's realtime-console directly to a WebSocket proxy service that I’ve deployed on AWS EC2. The proxy service forwards WebSocket messages between clients and OpenAI’s GPT model.
The WebSocket URL format I'm using is
ws://{the_ip}:8000/ws
.I've tried setting
REACT_APP_LOCAL_RELAY_SERVER_URL=ws://{the_ip}:8000/ws
in the.env
file, but I'm encountering errors like:also, on refresh
Is this the correct way to configure the
LOCAL_RELAY_SERVER_URL
for the WebSocket proxy? Any guidance would be appreciated!The text was updated successfully, but these errors were encountered: