> ## 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 2 Max

> 通过 Comfy Router 调用 bfl/flux-2-max：端点、请求形状以及 Router 返回的响应。

`bfl/flux-2-max` 的 API 参考文档，由 Comfy Router 提供，来自 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 进行的同一调用。

**模型 ID：** `bfl/flux-2-max`

**端点：** `POST https://api.comfy.org/v2/models/bfl/flux-2-max`

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

      # 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-2-max",
              {
                  "prompt": "A single red maple leaf on a plain white background.",
              },
          )

      print(result)
      ```

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

      // Reads COMFY_API_KEY from the environment.
      // The SDK automatically creates an idempotency key and reuses it for automatic retries.
      const { data } = await comfy.models.run("bfl/flux-2-max", {
        prompt: "A single red maple leaf on a plain white background.",
      });

      console.log(data);
      ```

      ```bash cURL theme={null}
      curl https://api.comfy.org/v2/models/bfl/flux-2-max \
        -H "X-API-Key: $COMFY_API_KEY" \
        -H "Idempotency-Key: $(uuidgen)" \
        -H "Content-Type: application/json" \
        -d "{\"prompt\": \"A single red maple leaf on a plain white background.\"}"
      ```
    </CodeGroup>
  </Tab>

  <Tab title="Queue and collect later">
    <CodeGroup>
      ```python Python theme={null}
      from comfy_sdk import Comfy

      # 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-2-max",
              {
                  "prompt": "A single red maple leaf on a plain white background.",
              },
          )
          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(result)
      ```

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

      // Reads COMFY_API_KEY from the environment.
      // Each submit() call mints its own Idempotency-Key and reuses it for automatic retries.
      const handle = await comfy.models.submit("bfl/flux-2-max", {
        prompt: "A single red maple leaf on a plain white background.",
      });
      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();

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

      ```bash cURL theme={null}
      # 1. Submit. Router answers 201 with request_id, status_url, response_url and cancel_url.
      curl https://api.comfy.org/v2/models/bfl/flux-2-max/requests \
        -H "X-API-Key: $COMFY_API_KEY" \
        -H "Idempotency-Key: $(uuidgen)" \
        -H "Content-Type: application/json" \
        -d "{\"prompt\": \"A single red maple leaf on a plain white background.\"}"

      # 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-2-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-2-max/requests/$REQUEST_ID \
        -H "X-API-Key: $COMFY_API_KEY"
      ```
    </CodeGroup>
  </Tab>
</Tabs>

## Schema

### 输入

<ParamField body="height" type="integer" default="1024">
  图像的高度。

  范围：`256` 到 `2048`
</ParamField>

<ParamField body="input_image" type="string">
  Base64 编码的图像，用于图生图生成。
</ParamField>

<ParamField body="input_image_2" type="string">
  Base64 编码的图像，用于图生图生成。
</ParamField>

<ParamField body="input_image_3" type="string">
  Base64 编码的图像，用于图生图生成。
</ParamField>

<ParamField body="input_image_4" type="string">
  Base64 编码的图像，用于图生图生成。
</ParamField>

<ParamField body="input_image_5" type="string">
  Base64 编码的图像，用于图生图生成。
</ParamField>

<ParamField body="input_image_6" type="string">
  Base64 编码的图像，用于图生图生成。
</ParamField>

<ParamField body="input_image_7" type="string">
  Base64 编码的图像，用于图生图生成。
</ParamField>

<ParamField body="input_image_8" type="string">
  Base64 编码的图像，用于图生图生成。
</ParamField>

<ParamField body="input_image_9" type="string">
  Base64 编码的图像，用于图生图生成。
</ParamField>

<ParamField body="output_format" type="string" default="&#x22;jpeg&#x22;">
  已生成图像的输出格式。

  可选值：`jpeg`、`png`
</ParamField>

<ParamField body="prompt" type="string" required>
  要生成的图像的文本描述。
</ParamField>

<ParamField body="prompt_upsampling" type="boolean" default="true">
  自动修改用于生成的提示词。
</ParamField>

<ParamField body="safety_tolerance" type="integer" default="2">
  审核阈值等级（仅 Flux 2 Max）。

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

<ParamField body="seed" type="integer">
  用于复现的种子。
</ParamField>

<ParamField body="width" type="integer" default="1024">
  图像的宽度。

  范围：`256` 到 `2048`
</ParamField>

根据 Router 在 `GET /v2/models/bfl/flux-2-max/openapi.json` 提供的 schema 生成，该文档与它在请求到达提供商之前用于校验调用的是同一份文档。

### 输出

<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 小时的缓存中重放，所以稍后的轮询可能返回一个仅剩一小时的链接；对于无法执行重新托管的叶子节点，则保留 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>

## 示例

### 输入

```json theme={null}
{
  "prompt": "A single red maple leaf on a plain white background."
}
```

### 输出

```json theme={null}
{
  "cost": null,
  "id": "b2e0c1a4-0f2f-4a55-9f2e-2f9a1c0d4e77",
  "progress": null,
  "result": {
    "cost": null,
    "duration": 3.4,
    "end_time": 1767225603.4,
    "prompt": "A watercolor painting of a lighthouse at dawn, soft light on the water",
    "sample": "https://example.invalid/bfl/flux-pro-1.1/sample.png",
    "seed": 2784347701,
    "start_time": 1767225600
  },
  "status": "Ready"
}
```

## 发布前须知

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>
