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

# 通过 Comfy Router 使用 FLUX.1 Kontext

> 通过 Comfy Router 使用 HTTP 调用 FLUX.1 Kontext Pro 和 Kontext Max 的 Python、TypeScript 和 cURL 代码片段，以及请求字段和结果形状

FLUX.1 Kontext 的 API 参考。FLUX.1 Kontext 是 Black Forest Labs 的指令驱动图像编辑模型：发送一张图像和一条文本指令，即可取回编辑后的图像，同时场景的其余部分保持不变。

## 快速开始

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

选择你要调用的模型。下面的全部内容，从代码片段到 schema 和示例，都随你的选择而变化。

<Tabs>
  <Tab title="Kontext Pro">
    **Model ID:** `bfl/flux-kontext-pro`

    **Endpoint:** `POST https://api.comfy.org/v2/models/bfl/flux-kontext-pro`

    <Tabs>
      <Tab title="Wait for the result">
        <CodeGroup>
          ```python Python theme={null}
          import base64

          from comfy_sdk import Comfy

          with open("input.jpg", "rb") as f:
              input_image = base64.b64encode(f.read()).decode()

          # Reads COMFY_API_KEY from the environment.
          # The SDK automatically creates an idempotency key and reuses it for automatic retries.
          with Comfy() as client:
              result = client.models.run(
                  "bfl/flux-kontext-pro",
                  {
                      "prompt": "replace the background with a sunlit beach, keep the subject unchanged",
                      "input_image": input_image,
                      "aspect_ratio": "1:1",
                  },
              )

          print("image:", result["result"]["sample"])
          ```

          ```typescript TypeScript theme={null}
          import { comfy } from "@comfyorg/sdk";
          import { readFile } from "node:fs/promises";

          const inputImage = (await readFile("input.jpg")).toString("base64");

          // Reads COMFY_API_KEY from the environment.
          // The SDK automatically creates an idempotency key and reuses it for automatic retries.
          type Result = { result: { sample: string } };
          const { data } = await comfy.models.run<Result>("bfl/flux-kontext-pro", {
            prompt: "replace the background with a sunlit beach, keep the subject unchanged",
            input_image: inputImage,
            aspect_ratio: "1:1",
          });

          console.log("image:", data.result.sample);
          ```

          ```bash cURL theme={null}
          INPUT_IMAGE=$(base64 < input.jpg | tr -d '\n')

          curl https://api.comfy.org/v2/models/bfl/flux-kontext-pro \
            -H "X-API-Key: $COMFY_API_KEY" \
            -H "Idempotency-Key: $(uuidgen)" \
            -H "Content-Type: application/json" \
            -d "{\"prompt\": \"replace the background with a sunlit beach, keep the subject unchanged\", \"input_image\": \"$INPUT_IMAGE\", \"aspect_ratio\": \"1:1\"}"
          ```
        </CodeGroup>
      </Tab>

      <Tab title="Queue and collect later">
        将相同的请求体发送到 `POST https://api.comfy.org/v2/models/bfl/flux-kontext-pro/requests`。运行被受理后，Router 会立即返回 `201` 和 `request_id`；结果就绪后，可以从本进程或其他进程收集。状态、取消与收集的细节见 [Queued delivery](/zh/development/comfy-router/queue)。

        <CodeGroup>
          ```python Python theme={null}
          import base64

          from comfy_sdk import Comfy

          with open("input.jpg", "rb") as f:
              input_image = base64.b64encode(f.read()).decode()

          # Reads COMFY_API_KEY from the environment.
          # Each submit() call mints its own Idempotency-Key and reuses it for automatic retries.
          with Comfy() as client:
              handle = client.models.submit(
                  "bfl/flux-kontext-pro",
                  {
                      "prompt": "replace the background with a sunlit beach, keep the subject unchanged",
                      "input_image": input_image,
                      "aspect_ratio": "1:1",
                  },
              )
              print("request_id:", handle.request_id)  # with the model ID, all another process needs

              # Poll until the request completes, waiting the Retry-After the server names.
              for update in handle.iter_events():
                  print(update.status, update.queue_position)

              # The provider's own payload, the same value models.run() returns.
              # A request that failed or was cancelled raises the typed Router error here.
              result = handle.get()

          print("image:", result["result"]["sample"])
          ```

          ```typescript TypeScript theme={null}
          import { comfy } from "@comfyorg/sdk";
          import { readFile } from "node:fs/promises";

          const inputImage = (await readFile("input.jpg")).toString("base64");

          // Reads COMFY_API_KEY from the environment.
          // Each submit() call mints its own Idempotency-Key and reuses it for automatic retries.
          type Result = { result: { sample: string } };
          const handle = await comfy.models.submit<Result>("bfl/flux-kontext-pro", {
            prompt: "replace the background with a sunlit beach, keep the subject unchanged",
            input_image: inputImage,
            aspect_ratio: "1:1",
          });
          console.log("requestId:", handle.requestId); // with the model ID, all another process needs

          // Poll until the request completes, waiting the Retry-After the server names.
          for await (const update of handle.events()) {
            console.log(update.status, update.queuePosition);
          }

          // The same result models.run() returns. A request that failed or was cancelled rejects here.
          const result = await handle.get();
          if (result.kind !== "json") throw new Error("expected a JSON result");

          console.log("image:", result.data.result.sample);
          ```

          ```bash cURL theme={null}
          INPUT_IMAGE=$(base64 < input.jpg | tr -d '\n')

          # 1. Submit. Router answers 201 with request_id, status_url, response_url and cancel_url.
          curl https://api.comfy.org/v2/models/bfl/flux-kontext-pro/requests \
            -H "X-API-Key: $COMFY_API_KEY" \
            -H "Idempotency-Key: $(uuidgen)" \
            -H "Content-Type: application/json" \
            -d "{\"prompt\": \"replace the background with a sunlit beach, keep the subject unchanged\", \"input_image\": \"$INPUT_IMAGE\", \"aspect_ratio\": \"1:1\"}"

          # 2. Poll until status is COMPLETED, waiting the Retry-After seconds each response names.
          REQUEST_ID="<request_id from the 201 body>"
          curl -i https://api.comfy.org/v2/models/bfl/flux-kontext-pro/requests/$REQUEST_ID/status \
            -H "X-API-Key: $COMFY_API_KEY"

          # 3. Collect. 200 with the model's native output, 202 with the status body while it is still running.
          curl https://api.comfy.org/v2/models/bfl/flux-kontext-pro/requests/$REQUEST_ID \
            -H "X-API-Key: $COMFY_API_KEY"
          ```
        </CodeGroup>
      </Tab>
    </Tabs>

    <h2>Schema</h2>

    <h3>输入</h3>

    <ParamField body="aspect_ratio" type="string">
      输出的宽高比，介于 21:9 和 9:21 之间，例如 16:9。当提供了输入图像时，默认为输入图像的宽高比，否则为 1:1。
    </ParamField>

    <ParamField body="input_image" type="string">
      要编辑的图像，为 base64 编码的图像或 http(s) URL。可选；不提供时，模型仅根据提示词生成。
    </ParamField>

    <ParamField body="input_image_2" type="string">
      额外的参考图像，base64 编码或 http(s) URL（实验性多参考）。
    </ParamField>

    <ParamField body="input_image_3" type="string">
      额外的参考图像，base64 编码或 http(s) URL（实验性多参考）。
    </ParamField>

    <ParamField body="input_image_4" type="string">
      额外的参考图像，base64 编码或 http(s) URL（实验性多参考）。
    </ParamField>

    <ParamField body="output_format" type="string" default="&#x22;png&#x22;">
      输出图像格式。

      可能的值：`jpeg`、`png`、`webp`
    </ParamField>

    <ParamField body="prompt" type="string" required>
      描述要应用于 input\_image 的编辑操作，或在未提供 input\_image 时要生成的图像的文本提示词。
    </ParamField>

    <ParamField body="prompt_upsampling" type="boolean" default="false">
      是否对提示词进行上采样。如果启用，提示词会被自动修改，以便进行更具创造性的生成。
    </ParamField>

    <ParamField body="safety_tolerance" type="integer" default="2">
      输入和输出审核的阈值级别，介于 0（最严格）和 6（最宽松）之间。

      范围：`0` 到 `6`
    </ParamField>

    <ParamField body="seed" type="integer">
      用于可复现性的可选种子。省略时使用随机种子。
    </ParamField>

    <ParamField body="webhook_secret" type="string">
      用于 webhook 签名验证的可选密钥。
    </ParamField>

    <ParamField body="webhook_url" type="string (uri)">
      接收 webhook 通知的 URL。

      格式：`uri`
    </ParamField>

    由 Router 在 `GET /v2/models/bfl/flux-kontext-pro/openapi.json` 提供的 schema 生成，这也是请求到达提供商之前 Router 用于验证调用的同一份文档。

    <h3>输出</h3>

    <ResponseField name="cost" type="number">
      提供商报告的以积分计的费用，任务变为 Ready 后填充。

      格式：`float`
    </ResponseField>

    <ResponseField name="id" type="string" required>
      BFL 任务标识符。
    </ResponseField>

    <ResponseField name="progress" type="number">
      BFL 报告的可选生成进度。

      范围：`0` 到 `1`

      格式：`float`
    </ResponseField>

    <ResponseField name="result" type="object" required>
      已完成的生成。此处不可为空：该组件的 `required` 条目承诺 `200` 会携带结果，而可为空的 `result` 会将其降格为仅检查键是否存在。
    </ResponseField>

    <ResponseField name="result.cost" type="number">
      提供商报告的生成费用。这是 BFL 的数值，而非 Comfy 的收费。

      格式：`double`
    </ResponseField>

    <ResponseField name="result.duration" type="number">
      提供商报告的生成时长，以秒为单位。

      格式：`double`
    </ResponseField>

    <ResponseField name="result.end_time" type="number">
      提供商报告的生成完成时间，为自 Unix 纪元起的秒数。原因与 `start_time` 相同，使用 `double`。

      格式：`double`
    </ResponseField>

    <ResponseField name="result.prompt" type="string">
      经过任何提示词上采样后，生成实际运行的提示词。
    </ResponseField>

    <ResponseField name="result.sample" type="string (uri)">
      已生成资产的签名 URL。Router 会将资产重新托管到 Comfy 存储上并重写此字段，因此它通常是有效的 Comfy 托管 URL，有效期最长 24 小时：签发时签名为 24 小时，并从 23 小时的缓存中重放，因此稍后的轮询可能返回仅剩一小时有效期的 URL；如果某个叶子节点无法执行重新托管，则会保留 BFL 自己的短期交付 URL，视频约为两小时，图像约为十分钟。无论哪种情况，链接都会过期，因此请下载资产，而不要存储 URL。

      格式：`uri`
    </ResponseField>

    <ResponseField name="result.seed" type="integer">
      生成所使用的种子，无论是由用户提供还是由提供商选择。声明为 `int64` 是因为 BFL 会返回大于 2^31 的种子（例如 2784347701），而未格式化的 `integer` 在许多 SDK 生成器中会生成 32 位字段。

      格式：`int64`
    </ResponseField>

    <ResponseField name="result.start_time" type="number">
      提供商报告的生成开始时间，为自 Unix 纪元起的秒数。使用 `double` 而非 `float`：在当前的纪元值附近，float32 的间隔约为 128 秒，这会把整次生成的时间跨度压缩为单个解码值。

      格式：`double`
    </ResponseField>

    <ResponseField name="status" type="string" required>
      任务状态：Pending、Reasoning、Generating、Ready、Request Moderated、Content Moderated、Error 或 Task not found。
    </ResponseField>

    <h2>示例</h2>

    <h3>输入</h3>

    ```json theme={null}
    {
      "prompt": "replace the background with a sunlit beach, keep the subject unchanged",
      "input_image": "<base64 of input.jpg>",
      "aspect_ratio": "1:1"
    }
    ```

    <h3>输出</h3>

    ```json theme={null}
    {
      "id": "0a1b2c3d-...",
      "status": "Ready",
      "result": {
        "sample": "https://.../out.png",
        "prompt": "replace the background with a sunlit beach, keep the subject unchanged",
        "seed": 1234567890
      }
    }
    ```

    该 URL 是临时的。如果需要保留图像，请及时下载。
  </Tab>

  <Tab title="Kontext Max">
    **Model ID:** `bfl/flux-kontext-max`

    **Endpoint:** `POST https://api.comfy.org/v2/models/bfl/flux-kontext-max`

    <Tabs>
      <Tab title="Wait for the result">
        <CodeGroup>
          ```python Python theme={null}
          import base64

          from comfy_sdk import Comfy

          with open("input.jpg", "rb") as f:
              input_image = base64.b64encode(f.read()).decode()

          # Reads COMFY_API_KEY from the environment.
          # The SDK automatically creates an idempotency key and reuses it for automatic retries.
          with Comfy() as client:
              result = client.models.run(
                  "bfl/flux-kontext-max",
                  {
                      "prompt": "replace the background with a sunlit beach, keep the subject unchanged",
                      "input_image": input_image,
                      "aspect_ratio": "1:1",
                  },
              )

          print("image:", result["result"]["sample"])
          ```

          ```typescript TypeScript theme={null}
          import { comfy } from "@comfyorg/sdk";
          import { readFile } from "node:fs/promises";

          const inputImage = (await readFile("input.jpg")).toString("base64");

          // Reads COMFY_API_KEY from the environment.
          // The SDK automatically creates an idempotency key and reuses it for automatic retries.
          type Result = { result: { sample: string } };
          const { data } = await comfy.models.run<Result>("bfl/flux-kontext-max", {
            prompt: "replace the background with a sunlit beach, keep the subject unchanged",
            input_image: inputImage,
            aspect_ratio: "1:1",
          });

          console.log("image:", data.result.sample);
          ```

          ```bash cURL theme={null}
          INPUT_IMAGE=$(base64 < input.jpg | tr -d '\n')

          curl https://api.comfy.org/v2/models/bfl/flux-kontext-max \
            -H "X-API-Key: $COMFY_API_KEY" \
            -H "Idempotency-Key: $(uuidgen)" \
            -H "Content-Type: application/json" \
            -d "{\"prompt\": \"replace the background with a sunlit beach, keep the subject unchanged\", \"input_image\": \"$INPUT_IMAGE\", \"aspect_ratio\": \"1:1\"}"
          ```
        </CodeGroup>
      </Tab>

      <Tab title="Queue and collect later">
        将相同的请求体发送到 `POST https://api.comfy.org/v2/models/bfl/flux-kontext-max/requests`。运行被受理后，Router 会立即返回 `201` 和 `request_id`；结果就绪后，可以从本进程或其他进程收集。状态、取消与收集的细节见 [Queued delivery](/zh/development/comfy-router/queue)。

        <CodeGroup>
          ```python Python theme={null}
          import base64

          from comfy_sdk import Comfy

          with open("input.jpg", "rb") as f:
              input_image = base64.b64encode(f.read()).decode()

          # Reads COMFY_API_KEY from the environment.
          # Each submit() call mints its own Idempotency-Key and reuses it for automatic retries.
          with Comfy() as client:
              handle = client.models.submit(
                  "bfl/flux-kontext-max",
                  {
                      "prompt": "replace the background with a sunlit beach, keep the subject unchanged",
                      "input_image": input_image,
                      "aspect_ratio": "1:1",
                  },
              )
              print("request_id:", handle.request_id)  # with the model ID, all another process needs

              # Poll until the request completes, waiting the Retry-After the server names.
              for update in handle.iter_events():
                  print(update.status, update.queue_position)

              # The provider's own payload, the same value models.run() returns.
              # A request that failed or was cancelled raises the typed Router error here.
              result = handle.get()

          print("image:", result["result"]["sample"])
          ```

          ```typescript TypeScript theme={null}
          import { comfy } from "@comfyorg/sdk";
          import { readFile } from "node:fs/promises";

          const inputImage = (await readFile("input.jpg")).toString("base64");

          // Reads COMFY_API_KEY from the environment.
          // Each submit() call mints its own Idempotency-Key and reuses it for automatic retries.
          type Result = { result: { sample: string } };
          const handle = await comfy.models.submit<Result>("bfl/flux-kontext-max", {
            prompt: "replace the background with a sunlit beach, keep the subject unchanged",
            input_image: inputImage,
            aspect_ratio: "1:1",
          });
          console.log("requestId:", handle.requestId); // with the model ID, all another process needs

          // Poll until the request completes, waiting the Retry-After the server names.
          for await (const update of handle.events()) {
            console.log(update.status, update.queuePosition);
          }

          // The same result models.run() returns. A request that failed or was cancelled rejects here.
          const result = await handle.get();
          if (result.kind !== "json") throw new Error("expected a JSON result");

          console.log("image:", result.data.result.sample);
          ```

          ```bash cURL theme={null}
          INPUT_IMAGE=$(base64 < input.jpg | tr -d '\n')

          # 1. Submit. Router answers 201 with request_id, status_url, response_url and cancel_url.
          curl https://api.comfy.org/v2/models/bfl/flux-kontext-max/requests \
            -H "X-API-Key: $COMFY_API_KEY" \
            -H "Idempotency-Key: $(uuidgen)" \
            -H "Content-Type: application/json" \
            -d "{\"prompt\": \"replace the background with a sunlit beach, keep the subject unchanged\", \"input_image\": \"$INPUT_IMAGE\", \"aspect_ratio\": \"1:1\"}"

          # 2. Poll until status is COMPLETED, waiting the Retry-After seconds each response names.
          REQUEST_ID="<request_id from the 201 body>"
          curl -i https://api.comfy.org/v2/models/bfl/flux-kontext-max/requests/$REQUEST_ID/status \
            -H "X-API-Key: $COMFY_API_KEY"

          # 3. Collect. 200 with the model's native output, 202 with the status body while it is still running.
          curl https://api.comfy.org/v2/models/bfl/flux-kontext-max/requests/$REQUEST_ID \
            -H "X-API-Key: $COMFY_API_KEY"
          ```
        </CodeGroup>
      </Tab>
    </Tabs>

    <h2>Schema</h2>

    <h3>输入</h3>

    <ParamField body="aspect_ratio" type="string">
      输出的宽高比，介于 21:9 和 9:21 之间，例如 16:9。当提供了输入图像时，默认为输入图像的宽高比，否则为 1:1。
    </ParamField>

    <ParamField body="input_image" type="string">
      要编辑的图像，为 base64 编码的图像或 http(s) URL。可选；不提供时，模型仅根据提示词生成。
    </ParamField>

    <ParamField body="input_image_2" type="string">
      额外的参考图像，base64 编码或 http(s) URL（实验性多参考）。
    </ParamField>

    <ParamField body="input_image_3" type="string">
      额外的参考图像，base64 编码或 http(s) URL（实验性多参考）。
    </ParamField>

    <ParamField body="input_image_4" type="string">
      额外的参考图像，base64 编码或 http(s) URL（实验性多参考）。
    </ParamField>

    <ParamField body="output_format" type="string" default="&#x22;png&#x22;">
      输出图像格式。

      可能的值：`jpeg`、`png`、`webp`
    </ParamField>

    <ParamField body="prompt" type="string" required>
      描述要应用于 input\_image 的编辑操作，或在未提供 input\_image 时要生成的图像的文本提示词。
    </ParamField>

    <ParamField body="prompt_upsampling" type="boolean" default="false">
      是否对提示词进行上采样。如果启用，提示词会被自动修改，以便进行更具创造性的生成。
    </ParamField>

    <ParamField body="safety_tolerance" type="integer" default="2">
      输入和输出审核的阈值级别，介于 0（最严格）和 6（最宽松）之间。

      范围：`0` 到 `6`
    </ParamField>

    <ParamField body="seed" type="integer">
      用于可复现性的可选种子。省略时使用随机种子。
    </ParamField>

    <ParamField body="webhook_secret" type="string">
      用于 webhook 签名验证的可选密钥。
    </ParamField>

    <ParamField body="webhook_url" type="string (uri)">
      接收 webhook 通知的 URL。

      格式：`uri`
    </ParamField>

    由 Router 在 `GET /v2/models/bfl/flux-kontext-max/openapi.json` 提供的 schema 生成，这也是请求到达提供商之前 Router 用于验证调用的同一份文档。

    <h3>输出</h3>

    <ResponseField name="cost" type="number">
      提供商报告的以积分计的费用，任务变为 Ready 后填充。

      格式：`float`
    </ResponseField>

    <ResponseField name="id" type="string" required>
      BFL 任务标识符。
    </ResponseField>

    <ResponseField name="progress" type="number">
      BFL 报告的可选生成进度。

      范围：`0` 到 `1`

      格式：`float`
    </ResponseField>

    <ResponseField name="result" type="object" required>
      已完成的生成。此处不可为空：该组件的 `required` 条目承诺 `200` 会携带结果，而可为空的 `result` 会将其降格为仅检查键是否存在。
    </ResponseField>

    <ResponseField name="result.cost" type="number">
      提供商报告的生成费用。这是 BFL 的数值，而非 Comfy 的收费。

      格式：`double`
    </ResponseField>

    <ResponseField name="result.duration" type="number">
      提供商报告的生成时长，以秒为单位。

      格式：`double`
    </ResponseField>

    <ResponseField name="result.end_time" type="number">
      提供商报告的生成完成时间，为自 Unix 纪元起的秒数。原因与 `start_time` 相同，使用 `double`。

      格式：`double`
    </ResponseField>

    <ResponseField name="result.prompt" type="string">
      经过任何提示词上采样后，生成实际运行的提示词。
    </ResponseField>

    <ResponseField name="result.sample" type="string (uri)">
      已生成资产的签名 URL。Router 会将资产重新托管到 Comfy 存储上并重写此字段，因此它通常是有效的 Comfy 托管 URL，有效期最长 24 小时：签发时签名为 24 小时，并从 23 小时的缓存中重放，因此稍后的轮询可能返回仅剩一小时有效期的 URL；如果某个叶子节点无法执行重新托管，则会保留 BFL 自己的短期交付 URL，视频约为两小时，图像约为十分钟。无论哪种情况，链接都会过期，因此请下载资产，而不要存储 URL。

      格式：`uri`
    </ResponseField>

    <ResponseField name="result.seed" type="integer">
      生成所使用的种子，无论是由用户提供还是由提供商选择。声明为 `int64` 是因为 BFL 会返回大于 2^31 的种子（例如 2784347701），而未格式化的 `integer` 在许多 SDK 生成器中会生成 32 位字段。

      格式：`int64`
    </ResponseField>

    <ResponseField name="result.start_time" type="number">
      提供商报告的生成开始时间，为自 Unix 纪元起的秒数。使用 `double` 而非 `float`：在当前的纪元值附近，float32 的间隔约为 128 秒，这会把整次生成的时间跨度压缩为单个解码值。

      格式：`double`
    </ResponseField>

    <ResponseField name="status" type="string" required>
      任务状态：Pending、Reasoning、Generating、Ready、Request Moderated、Content Moderated、Error 或 Task not found。
    </ResponseField>

    <h2>示例</h2>

    <h3>输入</h3>

    ```json theme={null}
    {
      "prompt": "replace the background with a sunlit beach, keep the subject unchanged",
      "input_image": "<base64 of input.jpg>",
      "aspect_ratio": "1:1"
    }
    ```

    <h3>输出</h3>

    ```json theme={null}
    {
      "id": "0a1b2c3d-...",
      "status": "Ready",
      "result": {
        "sample": "https://.../out.png",
        "prompt": "replace the background with a sunlit beach, keep the subject unchanged",
        "seed": 1234567890
      }
    }
    ```

    该 URL 是临时的。如果需要保留图像，请及时下载。
  </Tab>
</Tabs>

## 发布前须知

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

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

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

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

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