Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
google-gemini avatar

Gemini Live Api Dev

  • 6.5k installs
  • 3.9k repo stars
  • Updated July 24, 2026
  • google-gemini/gemini-skills

gemini-live-api-dev is a Google Gemini skill for building real-time bidirectional Live API applications over WebSockets with audio, video, text, tools, and translation.

About

The gemini-live-api-dev skill teaches low-latency, real-time voice and video applications with the Gemini Live API over WebSockets. It documents bidirectional audio streaming, camera or screen video frames, in-session text, input and output transcriptions, voice activity detection, native audio with configurable thinkingLevel, synchronous function calling, Google Search grounding, session compression and resumption, ephemeral tokens for browser auth, and live translation across seventy plus languages. Coverage targets google-genai Python and @google/genai JavaScript SDKs, recommends gemini-3.1-flash-live-preview, explains PCM audio formats, sendRealtimeInput versus sendClientContent rules, interruption queue handling, partner WebRTC integrations via LiveKit or Pipecat, and migration off deprecated 2.5 models. The skill also details connection lifetime limits, modality constraints, audioStreamEnd flushing, processing all server event parts, and search_docs MCP lookup when available. Invoke when wiring mic-to-speaker agents, multilingual interpreters, or vision-aware live sessions. The reference also notes partner WebRTC stacks, GoAway session lifetime handling, and deprecated model.

  • WebSocket Live API for bidirectional audio, video, and text streaming.
  • Recommends gemini-3.1-flash-live-preview with VAD and native audio thinkingLevel.
  • sendRealtimeInput for live input; sendClientContent only seeds initial history.
  • Ephemeral tokens secure client-side auth without exposing API keys in browsers.
  • Live Translate via gemini-3.5-live-translate-preview across seventy plus languages.

Gemini Live Api Dev by the numbers

  • 6,474 all-time installs (skills.sh)
  • +266 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #120 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

gemini-live-api-dev capabilities & compatibility

Capabilities
bidirectional audio, video, and text over websoc · vad interruption handling and dual transcription · synchronous function calling and google search g · session resumption, context compression, and goa · partner integrations for livekit, pipecat, fishj
Use cases
api development · translation · transcription · orchestration
From the docs

What gemini-live-api-dev says it does

The Live API enables **low-latency, real-time voice and video interactions** with Gemini over WebSockets.
SKILL.md
Use `send_realtime_input` / `sendRealtimeInput` for all real-time user input (audio, video, **and text**).
SKILL.md
npx skills add https://github.com/google-gemini/gemini-skills --skill gemini-live-api-dev

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs6.5k
repo stars3.9k
Security audit2 / 3 scanners passed
Last updatedJuly 24, 2026
Repositorygoogle-gemini/gemini-skills

How do I implement low-latency mic-to-speaker or camera-aware Gemini sessions with correct SDK calls, auth, and session limits?

Build real-time bidirectional Gemini Live API apps with WebSocket audio, video, text, VAD, function calling, session management, ephemeral tokens, and live translation.

Who is it for?

Real-time voice agents, live translation, vision-aware streaming, and synchronous function calling with google-genai or @google/genai.

Skip if: Skip for batch text-only Gemini calls, async Live function calling, code execution, URL context, or WebRTC without partner integrations.

When should I use this skill?

User builds Gemini Live API streaming, WebSocket voice chat, live translation, ephemeral token browser auth, or migrates deprecated live models.

What you get

A working Live API session using recommended models, sendRealtimeInput for live traffic, ephemeral tokens in browsers, and interruption-safe audio playback.

  • Live API WebSocket client
  • streaming session handlers
  • auth token flow

Files

SKILL.mdMarkdownGitHub ↗

Gemini Live API Development Skill

Overview

The Live API enables low-latency, real-time voice and video interactions with Gemini over WebSockets. It processes continuous streams of audio, video, or text to deliver immediate, human-like spoken responses.

Key capabilities:

  • Bidirectional audio streaming — real-time mic-to-speaker conversations
  • Video streaming — send camera/screen frames alongside audio
  • Text input/output — send and receive text within a live session
  • Audio transcriptions — get text transcripts of both input and output audio
  • Voice Activity Detection (VAD) — automatic interruption handling
  • Native audio — thinking (with configurable thinkingLevel)
  • Function calling — synchronous tool use
  • Google Search grounding — ground responses in real-time search results
  • Session management — context compression, session resumption, GoAway signals
  • Ephemeral tokens — secure client-side authentication
[!NOTE]
The Live API currently only supports WebSockets. For WebRTC support or simplified integration, use a partner integration.

Models

  • gemini-3.1-flash-live-preview — Optimized for low-latency, real-time dialogue. Native audio output, thinking (via thinkingLevel). 128k context window. This is the recommended model for all Live API use cases.
  • gemini-3.5-live-translate-preview — Real-time streaming translation model.
[!WARNING]
The following Live API models are deprecated and will be shut down. Migrate to gemini-3.1-flash-live-preview.
- gemini-2.5-flash-native-audio-preview-12-2025 — Migrate to gemini-3.1-flash-live-preview.
- gemini-live-2.5-flash-preview — Released June 17, 2025. Shutdown: December 9, 2025.
- gemini-2.0-flash-live-001 — Released April 9, 2025. Shutdown: December 9, 2025.

SDKs

  • Python: google-genaipip install google-genai
  • JavaScript/TypeScript: @google/genainpm install @google/genai
[!WARNING]
Legacy SDKs google-generativeai (Python) and @google/generative-ai (JS) are deprecated. Use the new SDKs above.

Partner Integrations

To streamline real-time audio/video app development, use a third-party integration supporting the Gemini Live API over WebRTC or WebSockets:

Audio Formats

  • Input: Raw PCM, little-endian, 16-bit, mono. 16kHz native (will resample others). MIME type: audio/pcm;rate=16000
  • Output: Raw PCM, little-endian, 16-bit, mono. 24kHz sample rate.
[!IMPORTANT]
Use send_realtime_input / sendRealtimeInput for all real-time user input (audio, video, and text). send_client_content / sendClientContent is only supported for seeding initial context history (requires setting initial_history_in_client_content in history_config). Do not use it to send new user messages during the conversation.
[!WARNING]
Do not use media in sendRealtimeInput. Use the specific keys: audio for audio data, video for images/video frames, and text for text input.

---

Quick Start

Authentication

Python
from google import genai

client = genai.Client(api_key="YOUR_API_KEY")
JavaScript
import { GoogleGenAI } from '@google/genai';

const ai = new GoogleGenAI({ apiKey: 'YOUR_API_KEY' });

Connecting to the Live API

Python
from google.genai import types

config = types.LiveConnectConfig(
    response_modalities=[types.Modality.AUDIO],
    system_instruction=types.Content(
        parts=[types.Part(text="You are a helpful assistant.")]
    )
)

async with client.aio.live.connect(model="gemini-3.1-flash-live-preview", config=config) as session:
    pass  # Session is active
JavaScript
const session = await ai.live.connect({
  model: 'gemini-3.1-flash-live-preview',
  config: {
    responseModalities: ['audio'],
    systemInstruction: { parts: [{ text: 'You are a helpful assistant.' }] }
  },
  callbacks: {
    onopen: () => console.log('Connected'),
    onmessage: (response) => console.log('Message:', response),
    onerror: (error) => console.error('Error:', error),
    onclose: () => console.log('Closed')
  }
});

Sending Text

Python
await session.send_realtime_input(text="Hello, how are you?")
JavaScript
session.sendRealtimeInput({ text: 'Hello, how are you?' });

Sending Audio

Python
await session.send_realtime_input(
    audio=types.Blob(data=chunk, mime_type="audio/pcm;rate=16000")
)
JavaScript
session.sendRealtimeInput({
  audio: { data: chunk.toString('base64'), mimeType: 'audio/pcm;rate=16000' }
});

Sending Video

Python
# frame: raw JPEG-encoded bytes
await session.send_realtime_input(
    video=types.Blob(data=frame, mime_type="image/jpeg")
)
JavaScript
session.sendRealtimeInput({
  video: { data: frame.toString('base64'), mimeType: 'image/jpeg' }
});

Receiving Audio and Text

[!IMPORTANT]
A single server event can contain multiple content parts simultaneously (e.g., audio chunks and transcript). Always process all parts in each event to avoid missing content.
Python
async for response in session.receive():
    content = response.server_content
    if content:
        # Audio — process ALL parts in each event
        if content.model_turn:
            for part in content.model_turn.parts:
                if part.inline_data:
                    audio_data = part.inline_data.data
        # Transcription
        if content.input_transcription:
            print(f"User: {content.input_transcription.text}")
        if content.output_transcription:
            print(f"Gemini: {content.output_transcription.text}")
        # Interruption
        if content.interrupted is True:
            pass  # Stop playback, clear audio queue
JavaScript
// Inside the onmessage callback
const content = response.serverContent;
if (content?.modelTurn?.parts) {
  for (const part of content.modelTurn.parts) {
    if (part.inlineData) {
      const audioData = part.inlineData.data; // Base64 encoded
    }
  }
}
if (content?.inputTranscription) console.log('User:', content.inputTranscription.text);
if (content?.outputTranscription) console.log('Gemini:', content.outputTranscription.text);
if (content?.interrupted) { /* Stop playback, clear audio queue */ }

---

Live Translation (Gemini Live Translate)

The Live API supports real-time, low-latency streaming translation of speech (audio) across 70+ languages. For full details on options and capabilities, see the Live Translate Guide.

Model

  • gemini-3.5-live-translate-preview — The recommended translation model for all Live Translate use cases.

Configuration (TranslationConfig)

To enable translation, specify a TranslationConfig object inside your live session setup:

  • Python SDK: Configure the connection using translation_config on LiveConnectConfig:
  config = types.LiveConnectConfig(
      response_modalities=[types.Modality.AUDIO],
      translation_config=types.TranslationConfig(
          target_language_code="es",  # Target language code (e.g. es, fr, pl)
          echo_target_language=True,
      ),
      input_audio_transcription=types.AudioTranscriptionConfig(),
      output_audio_transcription=types.AudioTranscriptionConfig(),
  )
  • Raw WebSockets: Place translationConfig inside generationConfig:
  {
    "setup": {
      "model": "models/gemini-3.5-live-translate-preview",
      "generationConfig": {
        "responseModalities": ["AUDIO"],
        "translationConfig": {
          "targetLanguageCode": "es",
          "echoTargetLanguage": true
        }
      }
    }
  }

---

Limitations

  • Response modality — Only TEXT or AUDIO per session, not both. Native audio models only support audio.
  • Audio-only session — 15 min without compression
  • Audio+video session — 2 min without compression
  • Connection lifetime — ~10 min (use session resumption)
  • Context window — 128k tokens (native audio) / 32k tokens (standard)
  • Async function calling — Not yet supported; function calling is synchronous only. The model will not start responding until you've sent the tool response.
  • Proactive audio — Not yet supported in Gemini 3.1 Flash Live. Remove any configuration for this feature.
  • Affective dialogue — Not yet supported in Gemini 3.1 Flash Live. Remove any configuration for this feature.
  • Code execution — Not supported
  • URL context — Not supported

Migrating from Gemini 2.5 Flash Live

When migrating from gemini-2.5-flash-native-audio-preview-12-2025 to gemini-3.1-flash-live-preview:

1. Model string — Update from gemini-2.5-flash-native-audio-preview-12-2025 to gemini-3.1-flash-live-preview. 2. Thinking configuration — Use thinkingLevel (minimal, low, medium, high) instead of thinkingBudget. Default is minimal for lowest latency. 3. Server events — A single event can contain multiple content parts simultaneously (audio + transcript). Process all parts in each event. 4. Client contentsend_client_content is only for seeding initial context history (set initial_history_in_client_content in history_config). Use send_realtime_input for text during conversation. 5. Turn coverage — Defaults to TURN_INCLUDES_AUDIO_ACTIVITY_AND_ALL_VIDEO instead of TURN_INCLUDES_ONLY_ACTIVITY. If sending constant video frames, consider sending only during audio activity to reduce costs. 6. Async function calling — Not yet supported. Function calling is synchronous only. 7. Proactive audio & affective dialogue — Not yet supported. Remove any configuration for these features.

Best Practices

1. Use headphones when testing mic audio to prevent echo/self-interruption 2. Enable context window compression for sessions longer than 15 minutes 3. Implement session resumption to handle connection resets gracefully 4. Use ephemeral tokens for client-side deployments — never expose API keys in browsers 5. Use `send_realtime_input` for all real-time user input (audio, video, text). Reserve send_client_content only for seeding initial context history 6. Send `audioStreamEnd` when the mic is paused to flush cached audio 7. Clear audio playback queues on interruption signals 8. Process all parts in each server event — events can contain multiple content parts

Documentation Lookup

When MCP is Installed (Preferred)

If the `search_docs` tool (from the Google MCP server) is available, use it as your only documentation source:

1. Call search_docs with your query 2. Read the returned documentation 3. Trust MCP results as source of truth for API details — they are always up-to-date.

[!IMPORTANT]
When MCP tools are present, never fetch URLs manually. MCP provides up-to-date, indexed documentation that is more accurate and token-efficient than URL fetching.

When MCP is NOT Installed (Fallback Only)

If no MCP documentation tools are available, fetch from the official docs index:

llms.txt URL: https://ai.google.dev/gemini-api/docs/llms.txt

This index contains links to all documentation pages in .md.txt format. Use web fetch tools to:

1. Fetch llms.txt to discover available documentation pages 2. Fetch specific pages (e.g., https://ai.google.dev/gemini-api/docs/live-session.md.txt)

Key Documentation Pages

[!IMPORTANT]
Those are not all the documentation pages. Use the llms.txt index to discover available documentation pages

Supported Languages

The Live API supports 70 languages including: English, Spanish, French, German, Italian, Portuguese, Chinese, Japanese, Korean, Hindi, Arabic, Russian, and many more. Native audio models automatically detect and switch languages.

Related skills

Forks & variants (1)

Gemini Live Api Dev has 1 known copy in the catalog totaling 43 installs. They canonicalize to this original listing.

FAQ

Which model should I use for general Live API dialogue?

gemini-3.1-flash-live-preview is the recommended model for all Live API use cases with native audio output and thinkingLevel control.

When should I use sendClientContent instead of sendRealtimeInput?

sendClientContent is only for seeding initial context history with initial_history_in_client_content; use sendRealtimeInput for live audio, video, and text.

How do I enable live speech translation?

Set translation_config with target_language_code on LiveConnectConfig and use gemini-3.5-live-translate-preview.

Is Gemini Live Api Dev safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

AI & Agent Buildingagentsllmautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.