メインコンテンツへスキップ

Documentation Index

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

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

OpenClaw には、ホスト型の画像および動画生成用の同梱 fal プロバイダーが付属しています。
プロパティ
プロバイダーfal
認証FAL_KEY(標準。FAL_API_KEY もフォールバックとして機能)
APIfal モデルエンドポイント

はじめに

1

Set the API key

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

Set a default image model

{
  agents: {
    defaults: {
      imageGenerationModel: {
        primary: "fal/fal-ai/flux/dev",
      },
    },
  },
}

画像生成

同梱の fal 画像生成プロバイダーのデフォルトは fal/fal-ai/flux/dev です。
機能
最大画像数リクエストあたり 4
編集モードFlux: 参照画像 1 枚、GPT Image 2: 10、Nano Banana 2: 14
サイズ上書きサポート
アスペクト比生成、および GPT Image 2/Nano Banana 2 編集でサポート
解像度サポート
出力形式png または jpeg
Flux の image-to-image リクエストは、aspectRatio の上書きをサポートしていません。GPT Image 2 および Nano Banana 2 の編集リクエストは fal の /edit エンドポイントを使用し、 アスペクト比のヒントを受け付けます。
PNG 出力が必要な場合は outputFormat: "png" を使用します。fal は OpenClaw で 明示的な透明背景制御を宣言していないため、fal モデルでは background: "transparent" は無視された上書きとして報告されます。 fal をデフォルトの画像プロバイダーとして使用するには:
{
  agents: {
    defaults: {
      imageGenerationModel: {
        primary: "fal/fal-ai/flux/dev",
      },
    },
  },
}

動画生成

同梱の fal 動画生成プロバイダーのデフォルトは fal/fal-ai/minimax/video-01-live です。
機能
モードテキストから動画、単一画像参照、Seedance 参照から動画
ランタイム長時間実行ジョブ向けのキューベースの送信/ステータス/結果フロー
HeyGen video-agent:
  • fal/fal-ai/heygen/v2/video-agent
Seedance 2.0:
  • fal/bytedance/seedance-2.0/fast/text-to-video
  • fal/bytedance/seedance-2.0/fast/image-to-video
  • fal/bytedance/seedance-2.0/fast/reference-to-video
  • fal/bytedance/seedance-2.0/text-to-video
  • fal/bytedance/seedance-2.0/image-to-video
  • fal/bytedance/seedance-2.0/reference-to-video
{
  agents: {
    defaults: {
      videoGenerationModel: {
        primary: "fal/bytedance/seedance-2.0/fast/text-to-video",
      },
    },
  },
}
{
  agents: {
    defaults: {
      videoGenerationModel: {
        primary: "fal/bytedance/seedance-2.0/fast/reference-to-video",
      },
    },
  },
}
Reference-to-video は、共有の video_generateimagesvideosaudioRefs パラメーターを通じて、最大 9 個の画像、3 個の動画、3 個の音声参照を受け付け、 参照ファイルは合計で最大 12 個です。
{
  agents: {
    defaults: {
      videoGenerationModel: {
        primary: "fal/fal-ai/heygen/v2/video-agent",
      },
    },
  },
}
利用可能な fal モデルの完全な一覧(最近追加されたエントリを含む)を確認するには、 openclaw models list --provider fal を使用します。

関連

Image generation

共有画像ツールのパラメーターとプロバイダー選択。

Video generation

共有動画ツールのパラメーターとプロバイダー選択。

Configuration reference

画像および動画モデルの選択を含むエージェントデフォルト。