> ## Documentation Index
> Fetch the complete documentation index at: https://comfyuiwiki.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 使用 Dreamina Seedance 2.0 260128 与 Comfy Router

> 通过 Comfy Router 调用 byteplus/dreamina-seedance-2-0-260128：端点、请求形状以及 Router 返回的响应。

`byteplus/dreamina-seedance-2-0-260128` 的 API 参考，由 Comfy Router 从 BytePlus 提供。

## 快速开始

在[你的 Comfy 工作区](https://platform.comfy.org/profile/api-keys?onboarding=router)中创建密钥，并将其导出为 `COMFY_API_KEY`。Python 和 TypeScript 代码片段使用 Comfy SDK（`pip install comfy-sdk` 和 `npm install @comfyorg/sdk`）；cURL 代码片段是通过原始 HTTP 发出的相同调用。

**模型 ID：** `byteplus/dreamina-seedance-2-0-260128`

**端点：** `POST https://api.comfy.org/v2/models/byteplus/dreamina-seedance-2-0-260128`

<Tabs defaultTabIndex={1}>
  <Tab title="等待结果">
    <CodeGroup>
      ```python Python theme={null}
      from comfy_sdk import Comfy

      # 从环境中读取 COMFY_API_KEY。
      # SDK 会自动创建幂等键，并在自动重试时复用它。
      with Comfy() as client:
          result = client.models.run(
              "byteplus/dreamina-seedance-2-0-260128",
              {
                  "content": [
                      {
                          "text": "A red fox trotting through a snowy pine forest",
                          "type": "text",
                      },
                  ],
                  "duration": 5,
                  "ratio": "16:9",
                  "resolution": "720p",
              },
          )

      print(result)
      ```

      ```typescript TypeScript theme={null}
      import { comfy } from "@comfyorg/sdk";

      // 从环境中读取 COMFY_API_KEY。
      // SDK 会自动创建幂等键，并在自动重试时复用它。
      const { data } = await comfy.models.run("byteplus/dreamina-seedance-2-0-260128", {
        content: [
          {
            text: "A red fox trotting through a snowy pine forest",
            type: "text",
          },
        ],
        duration: 5,
        ratio: "16:9",
        resolution: "720p",
      });

      console.log(data);
      ```

      ```bash cURL theme={null}
      curl https://api.comfy.org/v2/models/byteplus/dreamina-seedance-2-0-260128 \
        -H "X-API-Key: $COMFY_API_KEY" \
        -H "Idempotency-Key: $(uuidgen)" \
        -H "Content-Type: application/json" \
        -d "{\"content\": [{\"text\":\"A red fox trotting through a snowy pine forest\",\"type\":\"text\"}], \"duration\": 5, \"ratio\": \"16:9\", \"resolution\": \"720p\"}"
      ```
    </CodeGroup>
  </Tab>

  <Tab title="排队并稍后收集">
    将相同的请求体发送到 `POST https://api.comfy.org/v2/models/byteplus/dreamina-seedance-2-0-260128/requests`。运行被受理后，Router 会立即返回 `201` 和 `request_id`；结果就绪后，可以从本进程或其他进程收集。[队列投递](/zh/development/comfy-router/queue) 详细介绍了状态、取消与收集。

    <CodeGroup>
      ```python Python theme={null}
      import asyncio
      from comfy_sdk import AsyncComfy

      # 从环境中读取 COMFY_API_KEY。
      # 每次 submit() 调用都会生成自己的 Idempotency-Key，并在自动重试时复用它。
      async def main():
          async with AsyncComfy() as client:
              handle = await client.models.submit(
                  "byteplus/dreamina-seedance-2-0-260128",
                  {
                      "content": [
                          {
                              "text": "A red fox trotting through a snowy pine forest",
                              "type": "text",
                          },
                      ],
                      "duration": 5,
                      "ratio": "16:9",
                      "resolution": "720p",
                  },
              )
              print("request_id:", handle.request_id)  # 配合模型 ID，这就是另一个进程所需的全部信息

              # 轮询直到请求完成，按服务器指定的 Retry-After 等待。
              async for update in handle.iter_events():
                  print(update.status, update.queue_position)

              # 提供商自身的负载，与 models.run() 返回的值相同。
              # 失败或已取消的请求会在此处抛出类型化的 Router 错误。
              result = await handle.get()

          print(result)

      asyncio.run(main())
      ```

      ```typescript TypeScript theme={null}
      import { comfy } from "@comfyorg/sdk";

      // 从环境中读取 COMFY_API_KEY。
      // 每次 submit() 调用都会生成自己的 Idempotency-Key，并在自动重试时复用它。
      const handle = await comfy.models.submit("byteplus/dreamina-seedance-2-0-260128", {
        content: [
          {
            text: "A red fox trotting through a snowy pine forest",
            type: "text",
          },
        ],
        duration: 5,
        ratio: "16:9",
        resolution: "720p",
      });
      console.log("requestId:", handle.requestId); // 配合模型 ID，这就是另一个进程所需的全部信息

      // 轮询直到请求完成，按服务器指定的 Retry-After 等待。
      for await (const update of handle.events()) {
        console.log(update.status, update.queuePosition);
      }

      // 与 models.run() 返回的结果相同。失败或已取消的请求会在此处被拒绝。
      const result = await handle.get();

      console.log(result.data);
      ```

      ```bash cURL theme={null}
      # 1. 提交。Router 返回 201，并附带 request_id、status_url、response_url 和 cancel_url。
      curl https://api.comfy.org/v2/models/byteplus/dreamina-seedance-2-0-260128/requests \
        -H "X-API-Key: $COMFY_API_KEY" \
        -H "Idempotency-Key: $(uuidgen)" \
        -H "Content-Type: application/json" \
        -d "{\"content\": [{\"text\":\"A red fox trotting through a snowy pine forest\",\"type\":\"text\"}], \"duration\": 5, \"ratio\": \"16:9\", \"resolution\": \"720p\"}"

      # 2. 轮询直到状态为 COMPLETED，按每个响应中指定的 Retry-After 秒数等待。
      REQUEST_ID="<request_id from the 201 body>"
      curl -i https://api.comfy.org/v2/models/byteplus/dreamina-seedance-2-0-260128/requests/$REQUEST_ID/status \
        -H "X-API-Key: $COMFY_API_KEY"

      # 3. 收集。完成时返回 200 与模型的原生输出；仍在运行时返回 202 与状态正文。
      curl https://api.comfy.org/v2/models/byteplus/dreamina-seedance-2-0-260128/requests/$REQUEST_ID \
        -H "X-API-Key: $COMFY_API_KEY"
      ```
    </CodeGroup>
  </Tab>
</Tabs>

## 服务提供商

除非请求中指定了其他提供商，否则该模型由 Comfy Router 直接提供服务。以下提供商同样可以服务该模型，使用相同的端点和相同的模型 ID，并通过 `model_provider` 查询参数进行选择。

* **Comfy**（默认）：`POST https://api.comfy.org/v2/models/byteplus/dreamina-seedance-2-0-260128`
* **fal**，以 `fal/fal-seedance-2.0` 的形式：`POST https://api.comfy.org/v2/models/byteplus/dreamina-seedance-2-0-260128?model_provider=fal`
* **Higgsfield**，以 `higgsfield/higgsfield-seedance-2.0` 的形式：`POST https://api.comfy.org/v2/models/byteplus/dreamina-seedance-2-0-260128?model_provider=higgsfield`
* **Runware**，以 `runware/runware-seedance-2.0` 的形式：`POST https://api.comfy.org/v2/models/byteplus/dreamina-seedance-2-0-260128?model_provider=runware`
* **WaveSpeed**，以 `wavespeed/wavespeed-seedance-2.0` 的形式：`POST https://api.comfy.org/v2/models/byteplus/dreamina-seedance-2-0-260128?model_provider=wavespeed`

`strict_mode` 默认为 false，因此 Router 会把本页记录的原始请求体转换为提供商自身的 schema，并将响应转换回来。请参阅 API 参考中的 [`model_provider`、`strict_mode` 和 `fallback_provider`](/zh/development/comfy-router/reference#post-v2modelsprovidermodel)，以及[服务提供商](/zh/development/comfy-router/providers)，了解所有以此方式路由的模型。

## 结构

### 输入

<ParamField body="callback_url" type="string (uri)">
  本次生成任务结果的回调通知地址

  格式：`uri`
</ParamField>

<ParamField body="content" type="object[]" required>
  模型用于生成视频的输入内容
</ParamField>

<ParamField body="content[].audio_url" type="object">
  输入音频对象。仅 Seedance 2.5、2.0 和 2.0 fast 支持音频输入。Seedance 2.0 和 2.0 fast 不能单独使用音频，必须至少包含 1 个图像或视频；Seedance 2.5 支持仅音频输入。
</ParamField>

<ParamField body="content[].audio_url.url" type="string" required>
  音频网址、Base64 编码或资产 ID。
  音频网址：音频的公开网址（wav、mp3）。
  Base64：格式为 data:audio/\<format>;base64,\<content>
  资产 ID：格式为 asset://\<ASSET\_ID>
</ParamField>

<ParamField body="content[].draft_task" type="object">
  仅 Seedance 2.5 支持。要渲染为最终视频的 Draft 任务。它必须是唯一的内容项。
  最终视频会复用该 Draft 任务的提示词、输入资产、时长、比例、种子、generate\_audio 和 omni\_reference\_task\_type；请勿再次发送这些参数。分辨率默认为且仅支持 1080p。
</ParamField>

<ParamField body="content[].draft_task.id" type="string" required>
  使用 `draft` 设为 true 创建 Draft 视频时返回的任务 ID。
</ParamField>

<ParamField body="content[].image_url" type="object" />

<ParamField body="content[].image_url.url" type="string" required>
  用于图生视频生成的图像内容（当 type 为 "image\_url" 时）
  图片网址：请确保图片网址可访问。
  Base64 编码的内容：格式必须为 data:image/\<format>;base64,\<content>
  资产 ID：格式为 asset://\<ASSET\_ID>
</ParamField>

<ParamField body="content[].role" type="string">
  内容项的角色/位置。
  对于图像：first\_frame、last\_frame 或 reference\_image。
  对于视频：reference\_video（仅 Seedance 2.5、2.0 和 2.0 fast）。
  对于音频：reference\_audio（仅 Seedance 2.5、2.0 和 2.0 fast）。

  可能的值：`first_frame`、`last_frame`、`reference_image`、`reference_video`、`reference_audio`
</ParamField>

<ParamField body="content[].text" type="string">
  模型输入的文本信息。包含文本提示词和可选参数。

  文本提示词（必填）：使用中文和英文字符描述要生成的视频。

  参数（可选）：在文本提示词后添加 --\[parameters] 以控制视频规格：

  * \--resolution（--rs）：480p、720p、1080p（默认：720p）
  * \--ratio（--rt）：21:9、16:9、4:3、1:1、3:4、9:16、9:21、adaptive（默认：16:9 或 adaptive）
  * \--duration（--dur）：3-12 秒（默认：5）
  * \--framepersecond（--fps）：24（默认：24）
  * \--watermark（--wm）：true/false（默认：false）
  * \--seed（--seed）：-1 至 2^32-1（默认：-1）
  * \--camerafixed（--cf）：true/false（默认：false）

  示例："A beautiful landscape --ratio 16:9 --resolution 720p --duration 5"

  Comfy 侧的保护性限制，并非 BytePlus 的约束。BytePlus 未公布文本长度限制，在测试中接受了 40,000 个字符（2026-09-17）。
  它按字符计数而非字节，因此多字节的提示词在传输时可能达到该数值的数倍。它约束的是这一个字段，而不是整个请求：
  `content` 是一个数组，整体文档受每次请求的体积上限约束。实施该限制的界面是
  Comfy Router（/v2/models/byteplus/\{model}）；直接调用 v1 /proxy 时，则由 BytePlus 自己的校验器给出响应。
  该值设置得远高于真实流量，因此它绝不会对真实提示词做出判定：如果调用方需要更多，可以提高该值。
</ParamField>

<ParamField body="content[].type" type="string" required>
  输入内容的类型

  可能的值：`text`、`image_url`、`video_url`、`audio_url`、`draft_task`
</ParamField>

<ParamField body="content[].video_url" type="object">
  输入视频对象。仅 Seedance 2.5、2.0 和 2.0 fast 支持视频输入。
</ParamField>

<ParamField body="content[].video_url.url" type="string" required>
  视频网址或资产 ID。
  视频网址：视频的公开网址（mp4、mov）。
  资产 ID：格式为 asset://\<ASSET\_ID>
</ParamField>

<ParamField body="draft" type="boolean" default="false">
  仅 Seedance 2.5 支持。生成 480p 的 Draft 视频；分辨率必须为 480p。
  将返回的任务 ID 传入 `draft_task` 内容项，以渲染最终的 1080p 视频。Draft 任务 ID 的有效期为 7 天。
</ParamField>

<ParamField body="duration" type="`-1` | object">
  视频时长（秒）。Seedance 2.5：\[4,30] 或 -1（自动；视频编辑任务仅支持 -1）。Seedance 2.0 和 2.0 fast：\[4,15] 或 -1（自动）。Seedance 1.5 pro：\[4,12] 或 -1。Seedance 1.0：\[2,12]。

  范围：`2` 至 `30`
</ParamField>

<ParamField body="execution_expires_after" type="integer">
  任务超时阈值，单位为秒。默认 172800（48 小时）。范围：\[3600, 259200]。

  范围：`3600` 至 `259200`
</ParamField>

<ParamField body="generate_audio" type="boolean" default="true">
  Seedance 2.5、2.0、2.0 fast 和 1.5 pro 支持。生成的视频是否包含与画面同步的音频。
  true：模型输出带同步音频的视频。
  false：模型输出无声视频。
</ParamField>

<ParamField body="model" type="string">
  要调用的模型 ID。支持的模型：seedance-1-5-pro-251215、seedance-1-0-pro-250528、seedance-1-0-pro-fast-251015、dreamina-seedance-2-0-260128、dreamina-seedance-2-0-fast-260128、dreamina-seedance-2-0-mini 和 dreamina-seedance-2-5-260628。直接调用 v1 的 POST /proxy/byteplus/api/v3/contents/generations/tasks 时必须提供该值：代理会拒绝任何其他值，若省略该值则返回 400。它不在本结构的 `required` 列表中，因为 Comfy Router 会从 /v2/models/byteplus/\{model} 的 `{model}` 路径段填充它，所以 Router 调用方会省略它。
</ParamField>

<ParamField body="output_format" type="string" default="&#x22;mp4&#x22;">
  仅 Seedance 2.5 支持。输出视频的容器格式。mp4：通用容器（H.264/AAC，yuv420p），兼容性广，文件大小更小。
  mov：专业容器（H.264 High 4:4:4 Predictive/PCM，yuv444p），颜色精度高，适合后期制作；文件大小更大。

  可选值：`mp4`、`mov`
</ParamField>

<ParamField body="ratio" type="string">
  已生成视频的宽高比。Seedance 2.0 和 2.0 fast、1.5 pro 默认：adaptive。
  Seedance 2.5 首帧 / 首尾帧生成：输出会沿用首帧的宽高比，因此只接受 `adaptive`（或省略该字段）；具体比例会在派发之前以 400 拒绝。Seedance 2.0 在这些模式下接受具体比例。

  可选值：`16:9`、`4:3`、`1:1`、`3:4`、`9:16`、`21:9`、`9:21`、`adaptive`
</ParamField>

<ParamField body="resolution" type="string">
  视频分辨率。Seedance 2.5、2.0 和 2.0 fast、1.5 pro、1.0 lite 默认：720p。Seedance 1.0 pro 和 pro-fast 默认：1080p。
  注意：Seedance 2.0 和 2.0 fast 不支持 1080p。Seedance 2.5 支持 480p、720p 和 1080p。

  可选值：`480p`、`720p`、`1080p`、`4k`
</ParamField>

<ParamField body="return_last_frame" type="boolean" default="false">
  是否返回已生成视频的最后一帧图像。
  true：返回已生成视频的最后一帧图像。将该参数设置为 true 后，你可以通过调用查询视频生成任务信息来获取最后一帧图像。最后一帧图像为 PNG 格式，其像素宽度和高度与已生成视频一致，并且不包含水印。使用该参数可以生成多个连续视频：将前一个已生成视频的最后一帧用作下一个视频任务的首帧，从而快速生成多个连续视频。
  false：不返回已生成视频的最后一帧图像。
</ParamField>

<ParamField body="seed" type="integer">
  用于控制随机性的种子整数。范围：\[-1, 2^32-1]。-1 表示使用随机种子。

  范围：`-1` 至 `4294967295`
</ParamField>

<ParamField body="service_tier" type="string">
  处理所用的服务层级。Seedance 2.5、2.0 和 2.0 fast 不支持 flex（离线推理）。

  可选值：`default`、`flex`
</ParamField>

<ParamField body="watermark" type="boolean" default="false">
  已生成视频是否包含水印。
</ParamField>

由 Router 在 `GET /v2/models/byteplus/dreamina-seedance-2-0-260128/openapi.json` 提供的 schema 生成，该文档也是请求到达提供商之前 Router 用于校验调用的同一份文档。

### 输出

<ResponseField name="content" type="object">
  视频生成任务完成后返回的输出，其中包含输出视频的下载 URL，以及在 BytePlus 返回时包含其最后一帧的下载 URL。`video_url` 和 `last_frame_url` 都会被重新托管到 Comfy 存储上；此处其他所有字段均来自 BytePlus 本身。可为空：BytePlus 会在任务完成 24 小时后清除这些 URL，因此在之后轮询到的成功文档可能不带 `content` 字段，或该字段为 null。
</ResponseField>

<ResponseField name="content.last_frame_url" type="string">
  生成视频最后一帧的下载 URL，在请求设置了 `return_last_frame` 时返回。不要根据此 URL 推断图像格式：BytePlus 在请求侧将最后一帧记录为 PNG，Router 会重新托管它收到的任意字节，并根据上游的 Content-Type 或内容嗅探来确定类型，只有在两者都失败时才回退为 `image/jpeg`。Router 会将最后一帧重新托管到 Comfy 存储并重写此字段，因此它通常是有效期最长 24 小时的 Comfy 签名 URL：签发时按 24 小时签名，并从 23 小时的缓存中重放，因此之后的轮询可能返回一个仅剩一小时有效期的 URL。当无法执行重新托管时，该字段会保留 BytePlus 自己的 URL，BytePlus 会在任务完成 24 小时后清除该 URL。无论哪种方式，链接都会过期，因此请下载该帧，而不要保存 URL。
</ResponseField>

<ResponseField name="content.output_format" type="string">
  生成视频的容器格式（mp4 或 mov），当 BytePlus 将其嵌套在 `content` 内时提供。Seedance 模型更常将其作为 `content` 的顶层同级字段返回，请参阅顶层的 `output_format` 字段。Router 会读取两者中存在的那个。
</ResponseField>

<ResponseField name="content.video_url" type="string">
  输出视频的下载 URL。Router 会将视频重新托管到 Comfy 存储并重写此字段，因此它通常是有效期最长 24 小时的 Comfy 签名 URL：签发时按 24 小时签名，并从 23 小时的缓存中重放，因此之后的轮询可能返回一个仅剩一小时有效期的 URL。当无法执行重新托管时，该字段会保留 BytePlus 自己的 URL，BytePlus 会在任务完成 24 小时后清除该 URL，并且在某些模型上将其下载次数上限设为 100 次。无论哪种方式，链接都会过期，因此请下载该视频，而不要保存 URL。
</ResponseField>

<ResponseField name="created_at" type="integer">
  任务创建的时间。该值为 UNIX 时间戳（秒）。
</ResponseField>

<ResponseField name="duration" type="number">
  生成视频的时长（秒）。声明为数字而非整数，是因为 BytePlus 在这点上并不一致：观察到视频任务返回整秒数，而 BytePlus 的其他同类接口会报告小数时长，因此客户端不能假定其为整数值。这是 BytePlus 自有字段，在成功的视频任务中返回并原样转发。
</ResponseField>

<ResponseField name="error" type="object">
  错误信息。如果任务成功，则返回 null。如果任务失败，则返回错误信息。
</ResponseField>

<ResponseField name="error.code" type="string">
  上游 ModelArk 错误码。SensitiveContentDetected、InputTextSensitiveContentDetected、InputImageSensitiveContentDetected、InputVideoSensitiveContentDetected、InputAudioSensitiveContentDetected、OutputTextSensitiveContentDetected、OutputImageSensitiveContentDetected、OutputVideoSensitiveContentDetected 和 OutputAudioSensitiveContentDetected 表示因内容策略而被拒绝。同一系列可能带有以点分隔的原因，例如 InputImageSensitiveContentDetected.PrivacyInformation、OutputVideoSensitiveContentDetected.PolicyViolation 或 OutputImageSensitiveContentDetected.DeepFake。这是一个开放字符串，而非枚举：其他错误码描述验证失败和提供商失败。Router 会在 HTTP 400 错误信封和 HTTP 200 失败任务响应中识别策略系列，但不会覆盖传输层失败。
</ResponseField>

<ResponseField name="error.message" type="string">
  报错信息
</ResponseField>

<ResponseField name="id" type="string">
  视频生成任务的 ID
</ResponseField>

<ResponseField name="model" type="string">
  任务所使用的模型名称和版本
</ResponseField>

<ResponseField name="output_format" type="string">
  生成视频的容器格式（mp4 或 mov），在顶层作为 `content` 的同级字段返回：这正是 Seedance 视频任务查询返回它的位置。这是 BytePlus 自有字段，原样转发。
</ResponseField>

<ResponseField name="resolution" type="string">
  生成视频的分辨率，例如 `1080p`。这是 BytePlus 自有字段，在成功的视频任务中返回并原样转发。
</ResponseField>

<ResponseField name="seed" type="integer">
  该任务实际使用的生成种子。这是 BytePlus 自有字段，在成功的视频任务中返回并原样转发。

  格式：`int64`
</ResponseField>

<ResponseField name="status" type="string">
  任务的状态

  可能的值：`queued`、`running`、`cancelled`、`succeeded`、`failed`、`expired`
</ResponseField>

<ResponseField name="updated_at" type="integer">
  任务最后更新的时间。该值为 UNIX 时间戳（秒）。
</ResponseField>

<ResponseField name="usage" type="object">
  该请求的 token 用量
</ResponseField>

<ResponseField name="usage.completion_tokens" type="integer">
  模型生成的 token 数量
</ResponseField>

<ResponseField name="usage.total_tokens" type="integer">
  对于视频生成模型，不计算输入 token 数，默认为 0。因此，total\_tokens = completion\_tokens。
</ResponseField>

## 示例

### 输入

```json theme={null}
{
  "content": [
    {
      "text": "A red fox trotting through a snowy pine forest",
      "type": "text"
    }
  ],
  "duration": 5,
  "ratio": "16:9",
  "resolution": "720p"
}
```

### 输出

```json theme={null}
{
  "content": {
    "last_frame_url": "https://example.invalid/byteplus/seedance-1-0-pro-250528/last-frame",
    "video_url": "https://example.invalid/byteplus/seedance-1-0-pro-250528/generated.mp4"
  },
  "created_at": 1767225600,
  "duration": 5,
  "error": null,
  "id": "3f7a1b28-5c0d-4e91-8a6f-1b2c3d4e5f60",
  "model": "dreamina-seedance-2-0-260128",
  "output_format": "mp4",
  "resolution": "1080p",
  "seed": 1234567890123,
  "status": "succeeded",
  "updated_at": 1767225730
}
```

## 发布前须知

SDK 会生成 `Idempotency-Key` 并在自动重试中复用它。手动重试时，请复用原始 key。Router 最长可保持连接 10 分钟。

请求失败时，Router 会发送 `X-Comfy-Error-Type` 响应头说明原因。`422` 表示 Router 在调用提供商之前就拒绝了输入，`413` 表示请求体超出了 Router 可接受的大小。已生成的资源请及时下载，因为[结果 URL 会过期](/zh/development/comfy-router/reference#结果资产)。

上文任何字段描述中提到的尺寸限制，都是提供商对该字段自身的限定，引自提供商的规范。Router 会对整个请求体另行设置上限，base64 编码的媒体内容也计入其中：参见[请求体大小](/zh/development/comfy-router/limitations)。

本页记录的是通过 Comfy Router 调用的某一个合作伙伴模型。同一个 `comfy-sdk` / `@comfyorg/sdk` 包还提供第二个客户端，用于在 Comfy Cloud 上运行完整的 ComfyUI 工作流图：`Comfy(api_key=...)` / `new Comfy({ apiKey })`，并带有 `client.workflows`、`client.assets` 和 `client.jobs`。请参阅 [Comfy SDKs](/zh/development/api-development/sdks)。

<CardGroup cols={3}>
  <Card title="请求头" icon="list" href="/zh/development/comfy-router/headers">
    身份验证、幂等性、请求 ID、错误分类、重试节奏、消费限额。
  </Card>

  <Card title="使用 Router API" icon="code" href="/zh/development/comfy-router/api">
    模型发现、验证错误、重试与计费。
  </Card>

  <Card title="限制" icon="triangle-exclamation" href="/zh/development/comfy-router/limitations">
    Router 目前不支持的功能，以及替代方案。
  </Card>
</CardGroup>
