Google、Gemini Live API を公開し低遅延の音声・視覚対話を可能に
本文の状態
日本語全文を表示中
詳細モードで約4分の本文を読めます。
同じ出来事の情報源
この情報源を基点に整理
TLDR AI
Google は低遅延のリアルタイム音声・画像処理機能を持つ Gemini Live API を発表し、70 か国語対応や中断機能などを備えた次世代型音声エージェント開発を可能にする。
AI深層分析を開く2026年7月31日 23:19
AI深層分析
キーポイント
リアルタイム多モーダル処理能力
Live API はオーディオ、画像、テキストの連続ストリームを即座に処理し、人間のような自然な対話体験を提供する。
広範な業界別ユースケース
e コマース、ゲーム、ヘルスケア、金融サービスなど多岐にわたる産業向けにリアルタイム音声エージェントを構築できる用途が提示されている。
高度な対話制御機能
70 か国語のサポートに加え、ユーザーによる即時中断(Barge-in)、ツール連携、感情に応じたトーン調整などの機能が実装される。
多言語・機能サポート
70以上の言語での会話、ユーザーによる任意の中断(バージイン)、ツール連携、音声トランスクリプト生成などの機能が提供される。
技術仕様とプロトコル
入力は16kHz PCMオーディオや画像などに対応し、出力は24kHzのPCMオーディオとなる。通信にはステートフルなWebSocket接続(WSS)が使用される。
重要な引用
The Live API enables low-latency, real-time voice and vision interactions with Gemini.
Users can interrupt the model at any time for responsive interactions.
Converse in 70 supported languages.
Connect to the Gemini Live API using WebSockets to build a real-time multimodal application with a JavaScript frontend and ephemeral tokens.
編集コメントを表示
編集コメント
Gemini Live API の登場は、音声対話型 AI の実用性を一段階引き上げる重要なマイルストーンである。特に中断機能や感情応答のサポートは、ユーザー体験を飛躍的に向上させる要素として注目される。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
Live API を利用すれば、Gemini との低遅延・リアルタイムな音声および視覚による対話が可能になります。オーディオ、画像、テキストを連続ストリームとして処理し、即座に人間らしい音声応答を生成することで、ユーザーに自然な会話体験を提供します。

活用事例
Live API を使えば、さまざまな業界向けにリアルタイム音声エージェントを構築できます。具体的には以下のようなケースが挙げられます。
- EC・小売:パーソナライズされた商品推薦を行うショッピングアシスタントや、顧客の問い合わせに対応するサポートエージェント。
- ゲーム:対話型のノンプレイヤーキャラクター(NPC)、ゲーム内ヘルプアシスタント、ゲーム内のコンテンツをリアルタイムで翻訳する機能。
-次世代インターフェース:ロボット、スマートグラス、車両などにおける音声・動画対応の体験。
- ヘルスケア:患者のサポートや教育を行うヘルスコンパニオン。
- 金融サービス:資産管理や投資助言のための AI アドバイザー。
- 教育:個別指導とフィードバックを提供する AI メンターや学習パートナー。
- 翻訳・ローカライズ:会話内容の低遅延リアルタイム翻訳により、シームレスな多言語コミュニケーションを実現します。
主な機能
Live API は、堅牢な音声エージェントを構築するための包括的な機能を備えています。
- 多言語対応:70 の言語で対話が可能です。
- バージイン(割り込み):ユーザーはいつでもモデルの応答を中断でき、レスポンス性の高い対話を体験できます。
ツール利用機能
関数呼び出しや Google 検索などのツールを統合し、動的な対話を可能にします。
音声文字起こし
ユーザーの入力とモデルの出力の両方に対して、テキストによる文字起こしを提供します。
能動的な音声応答
モデルがいつ、どのような文脈で応答するかを制御できます。
感情に応じた対話
ユーザーの入力表現に合わせて、応答のスタイルやトーンを適応させます。
ライブ翻訳
70 以上の言語に対応したリアルタイムの音声通訳機能です。
技術仕様
Live API の技術仕様は以下の表にまとめられています。
カテゴリ | 詳細
---|---
入力モダリティ | 音声(生データ 16 ビット PCM、16kHz、リトルエンディアン)、画像(JPEG、1FPS 以下)、テキスト
出力モダリティ | 音声(生データ 16 ビット PCM、24kHz、リトルエンディアン)
プロトコル | ステートフル WebSocket 接続 (WSS)
実装アプローチの選択
Live API を統合する際は、以下のいずれかの実装アプローチを選択する必要があります。
- サーバー間通信:バックエンドが WebSocket を使用して Live API に接続します。通常、クライアントから送信されたストリームデータ(音声、動画、テキスト)をサーバーが受け取り、それを Live API へ転送します。
- クライアントからサーバー直結:フロントエンドコードが直接 WebSocket で Live API に接続し、バックエンドを経由せずにデータをストリーミングします。
はじめに
開発環境に合わせて以下のガイドを選択してください。
サーバー間通信
#### GenAI SDK チュートリアル
GenAI SDK を使用して Gemini Live API に接続し、Python バックエンドを備えたリアルタイムなマルチモーダルアプリケーションを構築します。
クライアントからサーバー直結
WebSocket によるチュートリアル
JavaScript フロントエンドと一時的なトークンを用いて、リアルタイムのマルチモーダルアプリケーションを構築するには、WebSocket を介して Gemini Live API に接続します。
Agent Development Kit (ADK) チュートリアル
エージェントを作成し、ADK のストリーミング機能を活用することで、音声や動画による通信を実現できます。
パートナー連携
リアルタイムの音声・ビデオアプリ開発を効率化するため、WebRTC または WebSocket を介して Gemini Live API をサポートするサードパーティ製の統合ソリューションを利用することが可能です。
原文を表示
The Live API enables low-latency, real-time voice and vision interactions with
Gemini. It processes continuous streams of audio, images, and text to deliver
immediate, human-like spoken responses, creating a natural conversational
experience for your users.

Use cases
Live API can be used to build real-time voice agents for a
variety of industries, including:
- E-commerce and retail: Shopping assistants that offer personalized
recommendations and support agents that resolve customer issues.
- Gaming: Interactive non-player characters (NPCs), in-game help
assistants, and real-time translation of in-game content.
- Next-gen interfaces: Voice- and video-enabled experiences in robotics,
smart glasses, and vehicles.
- Healthcare: Health companions for patient support and education.
- Financial services: AI advisors for wealth management and investment
guidance.
- Education: AI mentors and learner companions that provide personalized
instruction and feedback.
- Translation and localization: Real-time, low-latency translation of
spoken conversations, enabling seamless multilingual communication.
Key features
Live API offers a comprehensive set of features for building
robust voice agents:
- Multilingual support:
Converse in 70 supported languages.
- Barge-in:
Users can interrupt the model at any time for responsive interactions.
- Tool use:
Integrates tools like function calling and Google Search for dynamic
interactions.
- Audio transcriptions:
Provides text transcripts of both user input and model output.
- Proactive audio:
Lets you control when the model responds and in what contexts.
- Affective dialog:
Adapts response style and tone to match the user's input expression.
- Live Translation:
Real-time voice-to-voice translation in 70+ languages.
Technical specifications
The following table outlines the technical specifications for the
Live API:
Category
Details
Input modalities
Audio (raw 16-bit PCM audio, 16kHz, little-endian), images (JPEG <= 1FPS), text
Output modalities
Audio (raw 16-bit PCM audio, 24kHz, little-endian)
Protocol
Stateful WebSocket connection (WSS)
Choose an implementation approach
When integrating with Live API, you'll need to choose one of the following
implementation approaches:
- Server-to-server: Your backend connects to the Live API using
WebSockets. Typically, your client sends stream data (audio, video,
text) to your server, which then forwards it to the Live API.
- Client-to-server: Your frontend code connects directly to the Live API
using WebSockets to stream data, bypassing your backend.
Get started
Select the guide that matches your development environment:
Server-to-server
GenAI SDK tutorial
Connect to the Gemini Live API using the GenAI SDK to build a real-time multimodal application with a Python backend.
Client-to-server
WebSocket tutorial
Connect to the Gemini Live API using WebSockets to build a real-time multimodal application with a JavaScript frontend and ephemeral tokens.
Agent development kit
ADK tutorial
Create an agent and use the Agent Development Kit (ADK) Streaming to enable voice and video communication.
Partner integrations
To streamline the development of real-time audio and video apps, you can use
a third-party integration that supports the Gemini Live
API over WebRTC or WebSockets.
関連記事
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み