From fafe02a478056bbf4063ce9c138cd3aa1cfd2197 Mon Sep 17 00:00:00 2001 From: ghchinoy Date: Tue, 24 Dec 2024 11:55:09 -0700 Subject: [PATCH] doc: removes errant ; --- gemini/multimodal-live-api/websocket-demo-app/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemini/multimodal-live-api/websocket-demo-app/README.md b/gemini/multimodal-live-api/websocket-demo-app/README.md index 92ee9c3251..5794fff9c5 100644 --- a/gemini/multimodal-live-api/websocket-demo-app/README.md +++ b/gemini/multimodal-live-api/websocket-demo-app/README.md @@ -61,7 +61,7 @@ You can set up this app locally or via Cloud Shell. 1. Start the frontend: - - Navigate to `script.js` on line 9, `const PROXY_URL = "wss://[THE_URL_YOU_COPIED_WITHOUT_HTTP]";` and replace `PROXY_URL` value with `ws://localhost:8000`. It should look like: `const PROXY_URL = "ws://localhost:8000;";`. Note the absence of the second "s" in "wss" as "ws" indicates a non-secure WebSocket connection. + - Navigate to `script.js` on line 9, `const PROXY_URL = "wss://[THE_URL_YOU_COPIED_WITHOUT_HTTP]";` and replace `PROXY_URL` value with `ws://localhost:8000`. It should look like: `const PROXY_URL = "ws://localhost:8000";`. Note the absence of the second "s" in "wss" as "ws" indicates a non-secure WebSocket connection. - Right below on line 10, update `PROJECT_ID` with your Google Cloud project ID. - Save the changes you've made to `script.js` - Now make sure to open a **separate** terminal window from the backend to run this command (keep the backend server running in the first terminal).