OpenClaw Reference (Mirrored)

fal

Mirrored from OpenClaw (MIT)
This mirror is provided for convenience. OpenClawdBots is not affiliated with or endorsed by OpenClaw.

fal

OpenClaw ships a bundled fal provider for hosted image and video generation.

PropertyValue
Providerfal
AuthFAL_KEY (canonical; FAL_API_KEY also works as a fallback)
APIfal model endpoints

Getting started

  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",
          },
        },
      },
    }
    

Image generation

The bundled fal image-generation provider defaults to fal/fal-ai/flux/dev.

CapabilityValue
Max images4 per request
Edit modeEnabled, 1 reference image
Size overridesSupported
Aspect ratioSupported
ResolutionSupported
WARNING

The fal image edit endpoint does not support aspectRatio overrides.

To use fal as the default image provider:

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

Video generation

The bundled fal video-generation provider defaults to fal/fal-ai/minimax/video-01-live.

CapabilityValue
ModesText-to-video, single-image reference
RuntimeQueue-backed submit/status/result flow for long-running jobs
Available video models

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/text-to-video
  • fal/bytedance/seedance-2.0/image-to-video
Seedance 2.0 config example
{
  agents: {
    defaults: {
      videoGenerationModel: {
        primary: "fal/bytedance/seedance-2.0/fast/text-to-video",
      },
    },
  },
}
HeyGen video-agent config example
{
  agents: {
    defaults: {
      videoGenerationModel: {
        primary: "fal/fal-ai/heygen/v2/video-agent",
      },
    },
  },
}
TIP

Use openclaw models list --provider fal to see the full list of available fal models, including any recently added entries.