模型 API 接入文件
Gemini Omni 1.1 Flash API 接入文件
透過 Rivya Public API v1 呼叫 Gemini Omni 1.1 Flash,包含模型 ID gemini-omni-flash-1-1、輸入類型、參數、Files API 規則、點數和回應範例。
API 可呼叫文字或 URL 可用;參考模式使用 Files API影片
API 模型 ID
gemini-omni-flash-1-1
輸入類型
text, file
Files API
參考素材模式需要
基礎點數
per_video · 4=45 · 6=60 · 8=75 · 10=90 · 4k_4=105 · 4k_6=120 · 4k_8=135 · 4k_10=150 · withVideo=120 · withVideo4k=180 · ⌈total⌉
能力類型
影片
計費方式
FIXED
Prompt 上限
20000 字元
請求欄位
模型 ID 放在頂層欄位。模型專屬控制項放入 params。
| Key | 類型 | 必填 | 預設值 | 說明 |
|---|---|---|---|---|
| model | string | 是 | gemini-omni-flash-1-1 | 使用 gemini-omni-flash-1-1 作為 API 模型 ID。 |
| prompt | string | 是 | - | 這個模型最多 20000 個字元。 |
| params | object | 否 | - | 模型專屬參數物件。可用 keys 請見下方參數表。 |
| client_request_id | string | 否 | - | 可選的用戶端請求 ID,方便你在自己的系統中追蹤請求。 |
模型參數
| Key | 類型 | 必填 | 預設值 | 範圍 | 選項 | 說明 |
|---|---|---|---|---|---|---|
| reference_mode | select | 否 | reference | - | reference, frames | 參考方式 |
| resolution | select | 否 | 720p | - | 360p, 720p, 1080p, 4k | 解析度 |
| duration | select | 否 | 4 | - | 4, 6, 8, 10 | 片長 |
| aspect_ratio | select | 否 | 16:9 | - | 16:9, 9:16 | 畫面比例 |
| seed | number | 否 | - | min 0 / max 2147483647 | - | 留空時,每次都會產生新的隨機結果。重複使用同一個整數,會更容易重現或微調上一個結果。只有在提示詞和其他關鍵設定也保持相近時,結果才會更接近,但不保證 1:1 完全一致。 |
| video_start | number | 否 | - | min 0 / max 30 | - | 影片起點(秒) |
| video_ends | number | 否 | - | min 0 / max 30 | - | 影片終點(秒) |
上傳策略
先上傳參考文件,再把回傳的 URL 和 durationToken 放入 params.referenceMediaItems。
參考素材規則
參考素材: 最多七張圖片,每張 20 MB;或一個不超過 95 MB、30 秒的影片搭配最多五張圖。截取片段不得超過 10 秒。不支援音訊或角色素材 ID。 首尾影格模式只接受一張起始圖或一對首尾圖,不能混用其他參考素材。
最大文件數
7
支援文件類型
image, video
時長 Token
影片和音訊參考素材需要時長驗證時,應攜帶 /api/v1/files 回傳的 durationToken。
| kind | 大小上限 | MIME 類型 |
|---|---|---|
| image | 20 MB | image/jpeg, image/png, image/webp |
| video | 95 MB | video/mp4, video/quicktime |
最小請求
{
"model": "gemini-omni-flash-1-1",
"prompt": "A cinematic product reveal with smooth camera movement",
"params": {
"reference_mode": "reference",
"resolution": "720p",
"duration": "4",
"aspect_ratio": "16:9",
"seed": 0,
"video_start": 0,
"video_ends": 0
}
}參考文件請求
{
"model": "gemini-omni-flash-1-1",
"prompt": "A cinematic product reveal with smooth camera movement",
"params": {
"reference_mode": "reference",
"resolution": "720p",
"duration": "4",
"aspect_ratio": "16:9",
"seed": 0,
"video_start": 0,
"video_ends": 0,
"referenceMediaItems": [
{
"url": "https://cdn.example.com/reference-image.png",
"kind": "image",
"name": "reference-image.png",
"mimeType": "image/png"
}
]
}
}建立回應
建立 endpoint 會回傳公開 task id。繼續輪詢狀態 endpoint,直到任務成功或失敗。
{
"id": "task_gemini_omni_flash_1_1_example",
"status": "queued",
"model": "gemini-omni-flash-1-1",
"reserved_credits": 45,
"final_credits": 0,
"settlement_status": "RESERVED",
"created_at": "2026-05-11T00:00:00.000Z",
"updated_at": "2026-05-11T00:00:00.000Z",
"result": null,
"error": null
}常見錯誤
validation_failed, insufficient_credits, idempotency_conflict, rate_limited, not_found
部分模式需要透過 Files API 上傳參考素材。
