Gemini Omni Flash Preview

Gemini Omni Flash Preview 是一款互動式多模態模型,可在統一互動中處理文字與媒體輸入,並生成 3 至 10 秒的影片。它適合需要結合圖片、文字指令與連續對話快速探索影片創意的產品,也適合原型驗證、行銷素材與自動化媒體工作流程。你可以在試驗場中依照創作目標調整本頁列出的任務類型、時長與輸入素材,並在正式串接前以代表性請求比較生成效果、回應速度與成本。具體可用能力與參數範圍以目前頁面為準。

A coastal researcher observing wind, waves, birds, camera gear, and audio equipment
模型識別碼
gemini-omni-flash-preview
供應商
Google
API 端點
/v1beta/interactions
計費
0.11
更新時間
2026-08-13

能力

  • 透過目前公開任務端點生成影片
  • 即時 Schema 提供時支援圖片、參考素材、時長或解析度控制
  • 目前參數包括 prompt, task, duration

限制

  • 模型能力與參數範圍可能更新,正式環境應鎖定並驗證使用的參數組合
  • 未出現在即時 Request Schema 中的參數不應假定可用
  • 非同步任務需要處理輪詢、失敗、逾時與內容安全狀態

典型情境

  • 產品原型與自動化內容工作流程
  • 批次媒體生成與程式化創作
  • 需要統一驗證、計費與呼叫記錄的多模型應用

價格與計費範例

  • Video output | 0.11 | output_video_seconds

請求參數

參數類型必填預設值可選值
modelstring
prompttextarea
taskselecttext_to_videotext_to_video, image_to_video, reference_to_video
durationinteger5

API 串接範例

cURL

curl -X POST 'https://api.uniall.ai/v1beta/interactions' \
  -H 'Authorization: Bearer $UNIALL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"duration":5,"model":"gemini-omni-flash-preview","prompt":"Describe the output you want","task":"text_to_video"}'

Python

import json
import requests

payload = json.loads(r'''{"duration":5,"model":"gemini-omni-flash-preview","prompt":"Describe the output you want","task":"text_to_video"}''')
response = requests.post(
    "https://api.uniall.ai/v1beta/interactions",
    headers={"Authorization": "Bearer " + UNIALL_API_KEY},
    json=payload,
)
response.raise_for_status()
result = response.json()

JavaScript

const response = await fetch("https://api.uniall.ai/v1beta/interactions", {
  method: 'POST',
  headers: {
    Authorization: `Bearer ${process.env.UNIALL_API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({"duration":5,"model":"gemini-omni-flash-preview","prompt":"Describe the output you want","task":"text_to_video"}),
});

if (!response.ok) throw new Error(`HTTP ${response.status}`);
const result = await response.json();

常見問題

gemini-omni-flash-preview 的 API 端點是甚麼?

端點會依目前模型能力與 Request Schema 自動解析,並顯示於本頁 API 區域。

gemini-omni-flash-preview 如何計費?

價格區域直接讀取目前的結構化計費設定;改價後不需要重寫本文。

可以使用 Python 串接嗎?

可以。本頁範例使用目前端點與原始模型程式碼識別碼。

是否提供 JavaScript 與 cURL 範例?

提供。三種範例共用同一個即時請求結構。

支援哪些解析度、時長或參考圖參數?

支援範圍取決於目前 Request Schema,未顯示的欄位不應假定可用。

正式環境串接時要注意甚麼?

請驗證參數、逾時、錯誤處理與非同步影片任務狀態,並在模型更新後重新執行小範圍測試。