🎁 新規 無料登録、10回の呼び出しを進呈。最大 $1、カード不要。

gemini-3.1-flash-live vs nova-2-sonic

vs

いつ、どちらを使うべきか — ベンチマーク表ではなく、厳選された評価

音声はどちらも 100万あたり入力 $3、出力 $12 と同額なので、請求はテキストで分かれます。nova-2-sonic は 100万あたり $0.06 と $0.24 で、$0.75 と $4.5 に対しておよそ 12 分の 1 と 19 分の 1 です。gemini-3.1-flash-live は入力が広い方で、テキスト・画像・音声・映像、90 を超える言語、音声のみのセッション 15 分。nova-2-sonic は音声とテキストのみ、接続は 8 分が上限で継続手順が文書化されており、提供は 4 リージョンです。テキストが重いセッションのコストなら nova-2-sonic、映像入力と言語カバレッジなら gemini-3.1-flash-live。

料金

gemini-3.1-flash-live nova-2-sonic Δ
音声入力 / 1Mトークン $3 $3 =
音声出力 / 1Mトークン $12 $12 =
テキスト入力 / 1Mトークン $0.75 $0.06 13×
テキスト出力 / 1Mトークン $4.5 $0.24 19×
キャッシュ書き込み 別途料金なし

ビルド時のライブカタログの料金です。各モデルのページには現在の料金カードが記載されています。

位置付け — この課金単位におけるすべての6個のリアルタイム音声対音声モデル全体の1M音声トークンあたりの料金 (対数スケール)

機能

gemini-3.1-flash-live nova-2-sonic
思考コントロール 常時オン
プロンプトキャッシング 暗黙的 + 明示的 サポートされていません
キャッシュ有効期間 非公開 該当なし
最小キャッシュプレフィックス 4096 トークン 該当なし

仕様

gemini-3.1-flash-live nova-2-sonic
入力モダリティ テキスト 画像 音声 動画 テキスト 音声
出力モダリティ テキスト 音声 テキスト 音声
リリース 2026-03-26 2025-12-02
ボイス

Any voice from the Gemini text-to-speech voice set

native-audio output models switch languages naturally during a conversation.

Feminine- and masculine-sounding voices per locale (tiffany/matthew en-US, amy en-GB, olivia en-AU, kiara/arjun en-IN and hi-IN, ambre/florian fr-FR, beatrice/lorenzo it-IT, tina/lennart de-DE, lupe/carlos es-US, carolina/leo pt-BR)

tiffany and matthew are polyglot voices that speak every supported language.

セッション機能
  • Function calling is sequential only — the model will not start responding until the tool response is sent
  • search grounding and thinking supported
  • VAD interruption cancels the in-flight generation
  • no caching, structured outputs, code execution or Batch API
  • Intelligent turn-taking with configurable endpointing sensitivity
  • graceful interruption handling without losing context
  • function calling with asynchronous tool handling (the assistant keeps speaking while tools run)
  • RAG grounding
  • mixed audio and text input in one conversation
  • 8-minute connection limit
コンテキストウィンドウ 131K 1M

仕様は各ベンダーのドキュメントから転記されています。ベンダーが公開していない行は推測せず、省略しています。 すべての出典: gemini-3.1-flash-live · nova-2-sonic

1行で切り替え

以下のすべてのタブには両方のIDが含まれています — 変更箇所はハイライトされた2行のみです。エンドポイント、キー、リクエスト形式はすべて同じです。

import asyncio, base64, json, websockets

URL = "wss://synthorai.io/v1/realtime?model=gemini-3.1-flash-live"
# URL = "wss://synthorai.io/v1/realtime?model=nova-2-sonic"  # この行をアンコメントし、上の行をコメントアウトします
# Send ONLY the Authorization header — the beta protocol is retired.
HEADERS = {"Authorization": "Bearer sk-syn-..."}

async def main():
    async with websockets.connect(URL, additional_headers=HEADERS) as ws:
        # 1) configure the speech-to-speech session
        await ws.send(json.dumps({
            "type": "session.update",
            "session": {
                "type": "realtime",
                "output_modalities": ["audio"],
                "audio": {"output": {"voice": "alloy"}},
            },
        }))
        # 2) send input audio (base64 PCM16), then request a spoken reply
        await ws.send(json.dumps({"type": "input_audio_buffer.append", "audio": pcm16_b64}))
        await ws.send(json.dumps({"type": "input_audio_buffer.commit"}))
        await ws.send(json.dumps({"type": "response.create"}))
        # 3) stream the model's audio (and text) back
        async for raw in ws:
            ev = json.loads(raw)
            if ev["type"] == "response.audio.delta":
                play(base64.b64decode(ev["delta"]))   # audio out
            elif ev["type"] == "response.done":
                break

asyncio.run(main())

APIキーを取得する →

FAQ

gemini-3.1-flash-live と nova-2-sonic ではどちらが安いですか?

同じ 音声入力 / 1mトークン($3)が設定されているため、ここでは価格が決定打にはなりません — 下記の仕様と機能を確認してください。

2つの統合を行わずに gemini-3.1-flash-live と nova-2-sonic のA/Bテストを実施できますか?

はい。両方とも1つのAPIキーで同じOpenAI互換エンドポイントを通じて提供されます — モデル文字列を1行変更するだけで切り替えられるため、トラフィックの一部をそれぞれにルーティングし、請求額を直接比較できます。

gemini-3.1-flash-live と nova-2-sonic はプロンプトキャッシングをサポートしていますか?

当社のフィードでは2つのうち1つにのみキャッシュ読み込みの料金が記載されており、料金の記載がない場合、プロバイダーはキャッシュ読み込みを個別に価格設定していません。

関連する比較