Rivya AI 文件
模型 API 接入文件

Flux Kontext Max API 接入文件

透過 Rivya Public API v1 呼叫 Flux Kontext Max,包含模型 ID flux-kontext-max、輸入類型、參數、Files API 規則、點數和回應範例。

API 可呼叫文字或 URL 可用;參考模式使用 Files API圖片
API 模型 ID

flux-kontext-max

輸入類型

text, file

Files API

參考素材模式需要

基礎點數

8

能力類型

圖片

計費方式

FIXED

Prompt 上限

未設定 prompt 上限

請求欄位

模型 ID 放在頂層欄位。模型專屬控制項放入 params。

Key類型必填預設值說明
modelstringflux-kontext-max使用 flux-kontext-max 作為 API 模型 ID。
promptstring-支援文字輸入的模型使用這個欄位傳入 prompt。
paramsobject-模型專屬參數物件。可用 keys 請見下方參數表。
client_request_idstring-可選的用戶端請求 ID,方便你在自己的系統中追蹤請求。

模型參數

Key類型必填預設值範圍選項說明
aspectRatioselect16:9-21:9, 16:9, 4:3, 1:1, 3:4, 9:16長寬比
outputFormatselectjpeg-jpeg, pngJPEG 檔案較小,PNG 則更適合透明背景或更乾淨的無損邊緣。
enableTranslationselecttrue-true, false自動翻譯提示詞
promptUpsamplingselectfalse-false, true啟用後,Rivya 會讓模型在生成前先擴展並潤飾你的提示詞。這通常有助於提升細節品質,但也可能讓結果比原始提示詞更具詮釋性。
safetyTolerancenumber2min 0 / max 6-控制內容審核的嚴格程度。生成通常比編輯允許更寬的範圍;數值越低越嚴格,數值越高越寬鬆。
watermarktext---浮水印

上傳策略

先上傳參考文件,再把回傳的 URL 和 durationToken 放入 params.referenceMediaItems。

參考素材規則

參考圖片: 可為圖片編輯專案上傳最多 1 個圖片檔案。

最大文件數

1

支援文件類型

image

Duration token

影片和音訊參考素材需要時長驗證時,應攜帶 /api/v1/files 回傳的 durationToken。

kind大小上限MIME 類型
image10 MBimage/jpeg, image/png, image/webp

最小請求

{
  "model": "flux-kontext-max",
  "prompt": "A clean editorial product image on a soft studio background",
  "params": {
    "aspectRatio": "16:9",
    "outputFormat": "jpeg",
    "enableTranslation": "true",
    "promptUpsampling": "false",
    "safetyTolerance": 2,
    "watermark": "可選浮水印文字"
  }
}

參考文件請求

{
  "model": "flux-kontext-max",
  "prompt": "A clean editorial product image on a soft studio background",
  "params": {
    "aspectRatio": "16:9",
    "outputFormat": "jpeg",
    "enableTranslation": "true",
    "promptUpsampling": "false",
    "safetyTolerance": 2,
    "watermark": "可選浮水印文字",
    "referenceMediaItems": [
      {
        "url": "https://cdn.example.com/reference-image.png",
        "kind": "image",
        "name": "reference-image.png",
        "mimeType": "image/png"
      }
    ]
  }
}

建立回應

建立 endpoint 會回傳公開 task id。繼續輪詢狀態 endpoint,直到任務成功或失敗。

{
  "id": "task_flux_kontext_max_example",
  "status": "queued",
  "model": "flux-kontext-max",
  "reserved_credits": 8,
  "final_credits": 0,
  "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 上傳參考素材。