From c88c10342d2f58ebfac575e70e514ec4fd2047f4 Mon Sep 17 00:00:00 2001 From: "openclaw-docs-sync[bot]" Date: Sat, 11 Apr 2026 01:19:20 +0000 Subject: [PATCH] chore(sync): mirror docs from openclaw/openclaw@b56cd114e74535abe3166d77dc085dddaa6d970b --- .openclaw-sync/source.json | 4 ++-- docs/providers/fal.md | 9 +++++++-- docs/tools/video-generation.md | 16 +++++++++++++++- 3 files changed, 24 insertions(+), 5 deletions(-) diff --git a/.openclaw-sync/source.json b/.openclaw-sync/source.json index 469ab7777..00d2f86a5 100644 --- a/.openclaw-sync/source.json +++ b/.openclaw-sync/source.json @@ -1,5 +1,5 @@ { "repository": "openclaw/openclaw", - "sha": "21dfea837cf93e847b7e1ed0a3aa25ec90a86377", - "syncedAt": "2026-04-11T01:18:25.838Z" + "sha": "b56cd114e74535abe3166d77dc085dddaa6d970b", + "syncedAt": "2026-04-11T01:19:19.878Z" } diff --git a/docs/providers/fal.md b/docs/providers/fal.md index 646ae6bee..1eb70c1c9 100644 --- a/docs/providers/fal.md +++ b/docs/providers/fal.md @@ -69,15 +69,20 @@ The bundled `fal` video-generation provider defaults to - Modes: text-to-video and single-image reference flows - Runtime: queue-backed submit/status/result flow for long-running jobs +- Seedance 2.0 model refs: + - `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` -To use fal as the default video provider: +To use Seedance 2.0 as the default video model: ```json5 { agents: { defaults: { videoGenerationModel: { - primary: "fal/fal-ai/minimax/video-01-live", + primary: "fal/bytedance/seedance-2.0/fast/text-to-video", }, }, }, diff --git a/docs/tools/video-generation.md b/docs/tools/video-generation.md index 65221b009..e60bd614f 100644 --- a/docs/tools/video-generation.md +++ b/docs/tools/video-generation.md @@ -201,6 +201,20 @@ entries. } ``` +Seedance 2.0 on fal can be pinned with: + +```json5 +{ + agents: { + defaults: { + videoGenerationModel: { + primary: "fal/bytedance/seedance-2.0/fast/text-to-video", + }, + }, + }, +} +``` + ## Provider notes | Provider | Notes | @@ -208,7 +222,7 @@ entries. | Alibaba | Uses DashScope/Model Studio async endpoint. Reference images and videos must be remote `http(s)` URLs. | | BytePlus | Single image reference only. | | ComfyUI | Workflow-driven local or cloud execution. Supports text-to-video and image-to-video through the configured graph. | -| fal | Uses queue-backed flow for long-running jobs. Single image reference only. | +| fal | Uses queue-backed flow for long-running jobs. Single image reference only. Includes Seedance 2.0 text-to-video and image-to-video model refs. | | Google | Uses Gemini/Veo. Supports one image or one video reference. | | MiniMax | Single image reference only. | | OpenAI | Only `size` override is forwarded. Other style overrides (`aspectRatio`, `resolution`, `audio`, `watermark`) are ignored with a warning. |