> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-chore-sync-comfy-api-v2-spec-462120c.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 在 ComfyUI 中使用 MiniMax H3：T2V、I2V 和 R2V 视频工作流

> 了解如何在 ComfyUI 中使用开放权重的 MiniMax H3，通过原生工作流实现文生视频、图生视频和参考生视频，支持立体声音频。

[MiniMax H3](https://www.minimax.io/blog/minimax-h3) 是 MiniMax 推出的通用全模态生成模型，现已以开放权重形式提供。它能在单一上下文中联合理解文本、图像、视频和音频，并生成带**原生立体声音频**的视频：语音、音效和音乐在单次前向传播中一并建模，而非事后叠加。输出最高支持 2K 分辨率、24fps，时长约 15 秒。

ComfyUI 原生支持 MiniMax H3。模板库目前提供三个示例工作流，每种覆盖一种生成模式：

* **文生视频**（T2V）：根据文本提示生成视频
* **图生视频**（I2V）：根据输入图像生成视频，可选择首帧/末帧控制
* **参考生视频**（R2V）：根据参考图像、视频和音频生成视频，锁定角色、风格、动作、相机运动或声音

这三个是示例模板，并非模型能力的完整清单。通过原生 MiniMax H3 节点可以覆盖更多生成模式：`MiniMaxH3ImageToVideo` 节点支持首帧/末帧图生视频（fl2va），`MiniMaxH3ReferenceToVideo` 节点支持图像、视频和音频参考驱动的生成（ref2va）。你也可以用这些节点搭建其他工作流。

<UpdateReminder />

## 主要功能

* **原生立体声音频**：对话、音效和音乐可与视频一同生成，并在同一个 MP4 文件中同步
* **多模态上下文**：文本、图像、视频和音频参考可在单次生成中组合使用
* **参考驱动生成**：从参考素材中锁定角色身份、风格、动作、相机运镜或声音
* **指令遵循**：使用自然语言描述参考素材与目标镜头之间的关系
* **准确的文本渲染**：拼写文本和品牌元素渲染清晰
* **开放权重**：在 ComfyUI 中本地运行，可完全控制每个参数

## 入门

ComfyUI 支持开放权重的 MiniMax H3。开始使用：

1. 将 ComfyUI 更新到 0.30.0 或更高版本
2. 前往**模板库** > **视频**，选择任意一个 MiniMax H3 工作流
3. 按照弹出窗口的提示下载模型并运行工作流

模型文件托管在 Hugging Face 的 [Comfy-Org/MiniMax-H3](https://huggingface.co/Comfy-Org/MiniMax-H3) 仓库中。

## 设置输出分辨率

每个工作流都使用一个 **Resolution Selector（分辨率选择器）** 节点来控制总体输出尺寸。该节点根据三个设置计算 `width` 和 `height`，其输出直接连接到 MiniMax H3 节点的 `width` 和 `height` 输入：

* **宽高比**：选择一个预设，例如 `16:9 (Widescreen)`、`9:16 (Portrait Widescreen)` 或 `1:1 (Square)`
* **百万像素**：输出的目标总像素数。数值越大画面越大，数值越小生成越快
* **取整倍数**：计算结果会取整到该数值的最近倍数。保持为 `32`，与 H3 的分辨率网格一致

模板默认使用一个较快的预览尺寸。要获得全质量输出，请在 16:9 下将分辨率选择器的百万像素设为 `0.98`，即 H3 的原生画布（短边 768px，16:9 下为 1344x768）；或在 MiniMax H3 节点的 `width` 和 `height` 中直接输入 `1344 x 768`（默认值）。请跳过 `1.0` 百万像素档：它得到 1376x768，超出模型 768x1344 像素的面积上限。

## ComfyUI 原生工作流

### MiniMax H3 文生视频（T2V）

根据文本提示词生成带有原生立体声音频的视频。

<video controls className="w-full aspect-video" src="https://raw.githubusercontent.com/Comfy-Org/workflow_templates/main/output/video_minimax_h3_t2v.mp4" />

<CardGroup cols={2}>
  <Card title="在 Comfy Cloud 上运行" icon="cloud" href="https://cloud.comfy.org/?template=video_minimax_h3_t2v&utm_source=docs&utm_medium=referral&utm_campaign=minimax-h3">
    在 Comfy Cloud 中打开
  </Card>

  <Card title="下载工作流" icon="download" href="https://github.com/Comfy-Org/workflow_templates/blob/main/templates/video_minimax_h3_t2v.json">
    下载 JSON，或在模板库中搜索“MiniMax H3 T2V”
  </Card>
</CardGroup>

#### 模型下载

<CardGroup cols={2}>
  <Card title="Diffusion Model：minimax_h3_fl2va_pruned_int8_convrot" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/diffusion_models/minimax_h3_fl2va_pruned_int8_convrot.safetensors">
    放入 <code>ComfyUI/models/diffusion\_models/</code>
  </Card>

  <Card title="文本编码器：qwen3vl_32b_minimax_h3_nvfp4_awq" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/text_encoders/qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors">
    放入 <code>ComfyUI/models/text\_encoders/</code>
  </Card>

  <Card title="VAE：minimax_h3_video_vae_fp16" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/vae/minimax_h3_video_vae_fp16.safetensors">
    放入 <code>ComfyUI/models/vae/</code>
  </Card>

  <Card title="VAE：minimax_h3_audio_vae_fp32" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/vae/minimax_h3_audio_vae_fp32.safetensors">
    放入 <code>ComfyUI/models/vae/</code>
  </Card>

  <Card title="LoRA：minimax_h3_fl2v_turbo_8step_v1.0_comfyui_bf16" icon="download" href="https://huggingface.co/lightx2v/Minimax-h3-Turbo/resolve/main/minimax_h3_fl2v_turbo_8step_v1.0_comfyui_bf16.safetensors">
    工作流的运行需要此文件，用于可选的 Lightning LoRA 加速模式。放入 <code>ComfyUI/models/loras/</code>
  </Card>
</CardGroup>

#### 模型存储

```
ComfyUI/
├── 📂 models/
│   ├── 📂 diffusion_models/
│   │   └── minimax_h3_fl2va_pruned_int8_convrot.safetensors
│   ├── 📂 text_encoders/
│   │   └── qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors
│   ├── 📂 vae/
│   │   ├── minimax_h3_video_vae_fp16.safetensors
│   │   └── minimax_h3_audio_vae_fp32.safetensors
│   └── 📂 loras/
│       └── minimax_h3_fl2v_turbo_8step_v1.0_comfyui_bf16.safetensors
```

#### 提示词技巧

1. **描述整个场景**：先描述整体场景（地点、人物、正在发生的事情），再按时间将其拆分为多个镜头。
2. **镜头、相机和音频**：在同一个提示词块中描述镜头、相机运动以及伴随的音频（对话、音效、音乐）。
3. **分辨率**：H3 的原生画布短边为 768px，16:9 下为 1344x768，分辨率取整到 32 的倍数。
4. **时长**：时长输入会吸附到模型在 24fps 下每块 17 帧（17k+5）的网格上。
5. **首帧/尾帧**：将图像连接到 `MiniMaxH3ImageToVideo` 节点上的 `first_frame` 和/或 `last_frame`，即可将此工作流转换为首帧/尾帧图生视频。
6. **加速模式（可选）**：工作流默认以 20 步生成；调高步数（例如 25 步）可获得更好的动态质量。在 MiniMax H3 节点上启用 `turbo_mode`，即可使用内置 Lightning LoRA（`minimax_h3_fl2v_turbo_8step_v1.0_comfyui_bf16`）以 8 步快速生成，但音频和动态质量会略有下降。

#### 提示词编写指南

MiniMax 官方发布了针对基础生成模式（T2VA、I2VA、FL2VA 和 L2VA）的[视频提示词编写指南](https://huggingface.co/MiniMaxAI/MiniMax-H3/blob/main/docs/VIDEO_PROMPT_WRITING_GUIDE_base_en.md)。该指南说明了如何将提示词组织为带有镜头运动与音频（对白、音效、音乐）的定时镜头，并为每种模式提供了示例。MiniMax 还发布了可安装的 [H3 skills](https://github.com/MiniMax-AI/MiniMax-H3/tree/main/skills)，其中包含一个提示词编写 skill，将这些指南打包供智能体使用。

***

### MiniMax H3 图像转视频（I2V）

根据输入图像生成视频，可选指定首帧/末帧关键帧。

<video controls className="w-full aspect-video" src="https://raw.githubusercontent.com/Comfy-Org/workflow_templates/main/output/video_minimax_h3_i2v.mp4" />

<CardGroup cols={2}>
  <Card title="在 Comfy Cloud 上运行" icon="cloud" href="https://cloud.comfy.org/?template=video_minimax_h3_i2v&utm_source=docs&utm_medium=referral&utm_campaign=minimax-h3">
    在 Comfy Cloud 中打开
  </Card>

  <Card title="下载工作流" icon="download" href="https://github.com/Comfy-Org/workflow_templates/blob/main/templates/video_minimax_h3_i2v.json">
    下载 JSON 或在模板库中搜索“MiniMax H3 I2V”
  </Card>
</CardGroup>

<CardGroup cols={1}>
  <Card title="输入图像：transparent_rgb_gaming_mouse.png" icon="image" href="https://raw.githubusercontent.com/Comfy-Org/workflow_templates/main/input/transparent_rgb_gaming_mouse.png">
    下载默认输入图像，或使用您自己的图像。
  </Card>
</CardGroup>

#### 模型下载

<CardGroup cols={2}>
  <Card title="Diffusion 模型：minimax_h3_fl2va_pruned_int8_convrot" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/diffusion_models/minimax_h3_fl2va_pruned_int8_convrot.safetensors">
    放置到 <code>ComfyUI/models/diffusion\_models/</code>
  </Card>

  <Card title="文本编码器：qwen3vl_32b_minimax_h3_nvfp4_awq" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/text_encoders/qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors">
    放置到 <code>ComfyUI/models/text\_encoders/</code>
  </Card>

  <Card title="VAE：minimax_h3_video_vae_fp16" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/vae/minimax_h3_video_vae_fp16.safetensors">
    放置到 <code>ComfyUI/models/vae/</code>
  </Card>

  <Card title="VAE：minimax_h3_audio_vae_fp32" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/vae/minimax_h3_audio_vae_fp32.safetensors">
    放置到 <code>ComfyUI/models/vae/</code>
  </Card>
</CardGroup>

<CardGroup cols={1}>
  <Card title="Turbo LoRA：minimax_h3_fl2v_turbo_8step_v1.0_comfyui_bf16" icon="download" href="https://huggingface.co/lightx2v/Minimax-h3-Turbo/blob/main/minimax_h3_fl2v_turbo_8step_v1.0_comfyui_bf16.safetensors">
    放入 <code>ComfyUI/models/loras/</code>。启用 <code>turbo\_mode</code> 时需要使用。
  </Card>
</CardGroup>

#### 模型存储

```
ComfyUI/
├── 📂 models/
│   ├── 📂 diffusion_models/
│   │   └── minimax_h3_fl2va_pruned_int8_convrot.safetensors
│   ├── 📂 text_encoders/
│   │   └── qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors
│   ├── 📂 loras/
│   │   └── minimax_h3_fl2v_turbo_8step_v1.0_comfyui_bf16.safetensors
│   └── 📂 vae/
│       ├── minimax_h3_video_vae_fp16.safetensors
│       └── minimax_h3_audio_vae_fp32.safetensors
```

#### 提示词技巧

1. **关键帧**：`first_frame` 和 `last_frame` 输入为可选；模型会生成它们之间的运动
2. **提示词**：在同一个文本块中描述镜头、动作以及伴随的音频（对白、音效、音乐）
3. **分辨率**：H3 的原生画布短边为 768px，16:9 下为 1344x768，分辨率取整到 32 的倍数
4. **时长**：时长输入会对齐到模型在 24fps 下的每块 17 帧（17k+5）网格
5. **Turbo 模式**：在 MiniMax H3 节点上启用 `turbo_mode`，即可切换到 Turbo LoRA 并以 `turbo_steps`（默认 8）步生成，而非默认的 20 步。`turbo_model_strength` 控制 LoRA 强度（默认 1.0）。

#### 提示词编写指南

MiniMax 官方发布了针对基础生成模式（T2VA、I2VA、FL2VA 和 L2VA）的[视频提示词编写指南](https://huggingface.co/MiniMaxAI/MiniMax-H3/blob/main/docs/VIDEO_PROMPT_WRITING_GUIDE_base_en.md)。该指南说明了如何将提示词组织为带有镜头运动与音频（对白、音效、音乐）的定时镜头，并为每种模式提供了示例。MiniMax 还发布了可安装的 [H3 skills](https://github.com/MiniMax-AI/MiniMax-H3/tree/main/skills)，其中包含一个提示词编写 skill，将这些指南打包供智能体使用。

***

### MiniMax H3 参考转视频（R2V）

从参考图像、视频和音频的任意组合中生成视频，锁定角色、风格、动作、相机运镜或声音。

<video controls className="w-full aspect-video" src="https://raw.githubusercontent.com/Comfy-Org/workflow_templates/main/output/video_minimax_h3_r2v.mp4" />

<CardGroup cols={2}>
  <Card title="在 Comfy Cloud 上运行" icon="cloud" href="https://cloud.comfy.org/?template=video_minimax_h3_r2v&utm_source=docs&utm_medium=referral&utm_campaign=minimax-h3">
    在 Comfy Cloud 中打开
  </Card>

  <Card title="下载工作流" icon="download" href="https://github.com/Comfy-Org/workflow_templates/blob/main/templates/video_minimax_h3_r2v.json">
    下载 JSON，或在模板库中搜索“MiniMax H3 R2V”
  </Card>
</CardGroup>

<CardGroup cols={2}>
  <Card title="参考图像：red_superboy_on_city_roof.png" icon="image" href="https://raw.githubusercontent.com/Comfy-Org/workflow_templates/main/input/red_superboy_on_city_roof.png">
    工作流的角色参考，也可使用您自己的图像。
  </Card>

  <Card title="参考图像：mecha_dragon_lightning.png" icon="image" href="https://raw.githubusercontent.com/Comfy-Org/workflow_templates/main/input/mecha_dragon_lightning.png">
    工作流的风格与主题参考，也可使用您自己的图像。
  </Card>
</CardGroup>

#### 模型下载

<CardGroup cols={2}>
  <Card title="扩散模型：minimax_h3_ref2va_pruned_int8_convrot" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/diffusion_models/minimax_h3_ref2va_pruned_int8_convrot.safetensors">
    放置于 <code>ComfyUI/models/diffusion\_models/</code>
  </Card>

  <Card title="文本编码器：qwen3vl_32b_minimax_h3_nvfp4_awq" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/text_encoders/qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors">
    放置于 <code>ComfyUI/models/text\_encoders/</code>
  </Card>

  <Card title="VAE：minimax_h3_video_vae_fp16" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/vae/minimax_h3_video_vae_fp16.safetensors">
    放置于 <code>ComfyUI/models/vae/</code>
  </Card>

  <Card title="VAE：minimax_h3_audio_vae_fp32" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/vae/minimax_h3_audio_vae_fp32.safetensors">
    放置于 <code>ComfyUI/models/vae/</code>
  </Card>

  <Card title="LoRA：minimax_h3_ref2v_turbo_4step_v0.1_comfyui_bf16" icon="download" href="https://huggingface.co/Comfy-Org/MiniMax-H3/blob/main/loras/minimax_h3_ref2v_turbo_4step_v0.1_comfyui_bf16.safetensors">
    工作流的运行需要此文件，用于可选的 Lightning LoRA 加速模式。放入 <code>ComfyUI/models/loras/</code>
  </Card>
</CardGroup>

#### 模型存储

```
ComfyUI/
├── 📂 models/
│   ├── 📂 diffusion_models/
│   │   └── minimax_h3_ref2va_pruned_int8_convrot.safetensors
│   ├── 📂 text_encoders/
│   │   └── qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors
│   ├── 📂 vae/
│   │   ├── minimax_h3_video_vae_fp16.safetensors
│   │   └── minimax_h3_audio_vae_fp32.safetensors
│   └── 📂 loras/
│       └── minimax_h3_ref2v_turbo_4step_v0.1_comfyui_bf16.safetensors
```

#### 提示技巧

1. **按标签引用**：按标签引用每个输入，顺序须与其连接时完全一致，例如 `<Picture 1>`、`<Video 1>`、`<Audio 1>`
2. **为每个参考分配任务**：说明哪个参考负责画面的哪个部分（身份、风格、动作、相机、声音）。明确的分配往往效果更好
3. **限制**：最多 9 张参考图像、3 个参考视频（每个可携带自己的配乐），以及 3 个独立的参考音频片段
4. **ref\_image\_size**：`match` 会将参考缩小到生成分辨率以提高速度；`max` 则保留短边最长 2048px，以获得更强的身份保真度，但会牺牲速度
5. **注意**：R2V 使用 `ref2va` 扩散模型，这是一组与 T2V 和 I2V 工作流所用 `fl2va` 模型不同的权重
6. **加速模式（可选）**：工作流默认以 20 步生成；调高步数（例如 25 步）可获得更好的动态质量。勾选 **Lightning LoRA** 复选框，即可使用 4 步 turbo LoRA（`minimax_h3_ref2v_turbo_4step_v0.1_comfyui_bf16`）快速生成，但音频和动态质量会略有下降。

#### 提示词编写指南

MiniMax 官方发布了针对参考驱动生成（R2V）的[全参考模式提示词指南](https://huggingface.co/MiniMaxAI/MiniMax-H3/blob/main/docs/VIDEO_PROMPT_WRITING_GUIDE_ref_en.md)。该指南介绍了改写输出的结构，包括主体定义、参考标签与保留分析，以及如何为每个参考在目标镜头中分配角色。MiniMax 还发布了可安装的 [H3 skills](https://github.com/MiniMax-AI/MiniMax-H3/tree/main/skills)，其中包含一个提示词编写 skill，将这些指南打包供智能体使用。

## 使用原生节点的高级工作流

原生 MiniMax H3 节点还支持近期 ComfyUI 更新中加入的三项额外工作流。请将 ComfyUI 更新到最新版本以使用它们。

### 在任意帧锚定引导（#15439）

[Comfy-Org/ComfyUI#15439](https://github.com/Comfy-Org/ComfyUI/pull/15439) 加入了 `MiniMaxH3AddGuide` 节点。在此之前，关键帧只能锚定在视频的首帧和尾帧。该节点取消了这一限制：引导可以在连续时间轴上的任意帧锚定。

将 MiniMax H3 节点的 `positive` 和 latent 输出连接到 `MiniMaxH3AddGuide`，然后至少提供一个引导输入：

* **image**：静态图或片段。多帧批次会作为片段锚定，并裁剪到模型支持的片段长度：5、22、39... 帧（17k+5）。少于 5 帧的批次只使用第一张图
* **audio**：从同一帧索引开始锚定的音轨，裁剪到视频剩余时长
* **frame\_idx**：要锚定的帧。负值表示从视频结尾倒数

提供图像时将视频 VAE 连接到 `vae`，提供音频时将音频 VAE 连接到 `audio_vae`。串联多个 `MiniMaxH3AddGuide` 节点可在多个帧锚定引导。

例如，把现有视频的前 22 帧及其音频输入到帧 0 处的 `MiniMaxH3AddGuide`，模型就会续写这两条流。或者把一张静态图放到 124 帧视频的第 60 帧，强制视频经过该帧。

首帧/尾帧锚定的坐标与之前相同，因此现有工作流无需改动即可继续使用。

### 使用提示词嵌入（#15697）

[Comfy-Org/ComfyUI#15697](https://github.com/Comfy-Org/ComfyUI/pull/15697) 为 MiniMax H3 加入了提示词嵌入支持。现在可以在 H3 提示词中使用 ComfyUI 标准的 `embedding:` 语法。

将嵌入文件放入 `ComfyUI/models/embeddings/`，并在提示词中按名称引用，例如 `embedding:my_embedding`。嵌入会像其他 ComfyUI 模型一样被加载并混入文本 condition。

社区训练的示例嵌入可在 [silveroxides/MiniMax-H3\_tests](https://huggingface.co/silveroxides/MiniMax-H3_tests/tree/main/embeddings) 仓库中找到。文件名即其预期效果的描述，触发词为去掉扩展名的文件名：

| 嵌入文件                         | 效果（按文件名）  |
| ---------------------------- | --------- |
| `minimaxh3_art_is_explosion` | 艺术爆炸      |
| `minimaxh3_blooming_flowers` | 花朵绽放      |
| `minimaxh3_bullet_time`      | 子弹时间效果    |
| `minimaxh3_dark_magic`       | 黑暗魔法氛围    |
| `minimaxh3_fire_breath`      | 火焰吐息效果    |
| `minimaxh3_four_seasons`     | 四季更替      |
| `minimaxh3_kiss_camera`      | 接吻镜头      |
| `minimaxh3_spiral_ascent`    | 螺旋上升      |
| `minimaxh3_storm_magic`      | 风暴魔法      |
| `minimaxh3_truman_show`      | 《楚门的世界》风格 |

### 使用潜在空间噪声蒙版进行局部重绘与扩展（#15375）

[Comfy-Org/ComfyUI#15375](https://github.com/Comfy-Org/ComfyUI/pull/15375) 为 MiniMax H3 加入了逐 token 噪声蒙版，覆盖视频和音频两种潜在空间。现在可以只重新生成视频的一部分，其余部分保持不变。

像往常一样将蒙版连接到采样器的 `denoise_mask` 输入：`0` 值保留对应的潜在区域，`1` 值重新生成该区域。视频蒙版会对齐到模型的 2x2 潜在空间补丁网格，音频蒙版对齐到完整的潜在空间帧。可用于局部重绘、物体移除，或在保持现有内容稳定的同时扩展片段。

## 使用 Sage Attention 加速生成

示例工作流默认使用标准注意力实现。使用 [Sage Attention](https://github.com/woct0rdho/SageAttention) 可以将生成速度大约提升一倍，质量损失极小。Sage Attention 是可选依赖，需要你自行安装：

1. 安装 `sageattention` Python 包。从 [SageAttention releases](https://github.com/woct0rdho/SageAttention/releases) 页面下载与你 PyTorch 和 CUDA 版本匹配的 wheel 文件，然后用 `pip install <wheel-file>` 安装。
2. 安装 [KJNodes 自定义节点](https://github.com/kijai/ComfyUI-KJNodes)，它提供了 `Patch Sage Attention KJ` 节点。可以使用 ComfyUI Manager 安装，或将仓库克隆到 `ComfyUI/custom_nodes/` 后重启 ComfyUI。
3. 在工作流中添加 `Patch Sage Attention KJ` 节点，并将其连接在 `UNETLoader` 和 `BasicGuider` 节点之间：它的 `model` 输入接收来自 `UNETLoader` 的模型，`model` 输出连接到 `BasicGuider` 的 `model` 输入。将 `sage_attention` 设置为 `auto`。
4. 照常运行工作流。只需要给 guider 打补丁；scheduler 只负责生成 sigmas，可以保持不变。

注意：

* Sage Attention 要求 float16 或 bfloat16 张量。MiniMax H3 的部分层使用其他数据类型，因此你可能会在控制台看到 "Input tensors must be in dtype of torch.float16 or torch.bfloat16, using pytorch attention instead" 消息。这是正常现象；受影响的层会回退到标准注意力，生成仍然可以正常工作。
* 另一种方式是使用 `--use-sage-attention` 启动参数启动 ComfyUI 来全局启用 Sage Attention，无需添加节点。
