跳轉到主要內容

Documentation Index

Fetch the complete documentation index at: https://docs.openclaw.ai/llms.txt

Use this file to discover all available pages before exploring further.

OpenClaw 內建 runway 提供者,用於託管式影片生成。
屬性
提供者 IDrunway
驗證RUNWAYML_API_SECRET(標準)或 RUNWAY_API_KEY
APIRunway 以任務為基礎的影片生成(GET /v1/tasks/{id} 輪詢)

開始使用

1

設定 API 金鑰

openclaw onboard --auth-choice runway-api-key
2

將 Runway 設為預設影片提供者

openclaw config set agents.defaults.videoGenerationModel.primary "runway/gen4.5"
3

生成影片

要求代理生成影片。Runway 會自動被使用。

支援的模式

模式模型參考輸入
文字轉影片gen4.5(預設)
圖片轉影片gen4.51 個本機或遠端圖片
影片轉影片gen4_aleph1 個本機或遠端影片
本機圖片與影片參考可透過資料 URI 支援。純文字執行目前提供 16:99:16 長寬比。
影片轉影片目前明確需要 runway/gen4_aleph

設定

{
  agents: {
    defaults: {
      videoGenerationModel: {
        primary: "runway/gen4.5",
      },
    },
  },
}

進階設定

OpenClaw 會辨識 RUNWAYML_API_SECRET(標準)與 RUNWAY_API_KEY。 任一變數都能驗證 Runway 提供者。
Runway 使用以任務為基礎的 API。提交生成請求後,OpenClaw 會輪詢 GET /v1/tasks/{id},直到影片準備完成。輪詢行為不需要額外設定。

相關

影片生成

共用工具參數、提供者選擇與非同步行為。

設定參考

代理預設設定,包括影片生成模型。