Use of this sample app is subject to our Terms of Use.
The Zoom Video SDK for Web enables you to build custom video experiences on a webpage with Zoom's core technology.
This demo showcases using the Zoom Video SDK alongside the Google Gemini Live API agent in a frictionless experience.
To get started, clone the repo:
git clone https://github.com/zoom/zoom-videosdk-gemini-sample.git
-
Install the dependencies:
bun install # or npm install -
Create a
.envfile in the root directory of the project, you can do this by copying the.env.examplefile (cp .env.example .env) and replacing the values with your own. The.envfile should look like this, with your own Zoom Video SDK Credentials:ZOOM_SDK_KEY= ZOOM_SDK_SECRET= GEMINI_API_KEY= -
Use this command to generate your JWT Token on the console
node generateToken.js [sessionname] -
Run the app:
npm run startorbun start
-
Navigate to http://localhost:3004 or which ever port was chosen when starting the application
-
Click "Join Session" to join the session
-
You can now test Gemini while in the Zoom Session
For the full list of features and event listeners, as well as additional guides, see our Video SDK docs.
If you're looking for help, try Developer Support or our Developer Forum. Priority support is also available with Premier Developer Support plans.
Do not expose your credentials to the client, when using the Video SDK in production please make sure to use a backend service to sign the tokens. Don't store credentials in plain text, as this is a sample app we're using an .env for sake of simplicity.