> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-docs-recommend-assets-api.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ComfyUI Flux.2 Klein 4B ガイド

> FLUX.2 [klein] 4B の概要と、ComfyUI におけるテキストから画像への生成および画像編集ワークフローの実行方法について解説します。

<iframe width="560" height="315" src="https://www.youtube.com/embed/Y9foxm9OYEU?si=FeueXTTBoIkydjk7" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen />

## FLUX.2 \[Klein] について

FLUX.2 \[Klein] は、Flux ファミリーの中で現時点で（2026年1月15日現在）最も高速なモデルであり、テキストから画像への生成と画像編集を、1つのコンパクトなアーキテクチャに統合しています。インタラクティブなワークフロー、即時プレビュー、および低遅延が求められるアプリケーション向けに設計されており、蒸留版モデルでは約1秒でエンドツーエンドの推論が可能でありながら、単一参照および複数参照による画像編集においても高品質な結果を維持します。

**モデルの主な特長：**

* 2種類の4Bモデル：最大限の柔軟性とファインチューニングに対応する「Base（非蒸留）」と、速度重視の展開に適した「Distilled（4ステップ）」
* パフォーマンス：蒸留版は約1.2秒（RTX 5090）・VRAM 8.4GB、Base版は約17秒（RTX 5090）・VRAM 9.2GB
* 編集機能：スタイル変換、セマンティック編集、オブジェクトの置換／削除、複数参照による合成、反復的な編集

<Tip>
  <Tabs>
    <Tab title="Portable or self deployed users">
      Make sure your ComfyUI is updated.

      * [Download ComfyUI](https://www.comfy.org/download)
      * [Update Guide](/installation/update_comfyui)

      Workflows in this guide can be found in the [Workflow Templates](/interface/features/template).
      If you can't find them in the template, your ComfyUI may be outdated. (Desktop version's update will delay sometime)

      If nodes are missing when loading a workflow, possible reasons:

      1. You are not using the latest ComfyUI version (Nightly version)
      2. Some nodes failed to import at startup
    </Tab>

    <Tab title="Desktop or Cloud users">
      * The Desktop is base on ComfyUI stable release, it will auto-update when there is a new Desktop stable release available.
      * [Cloud](https://cloud.comfy.org) will update after ComfyUI stable release.

      So, if you find any core node missing in this document, it might be because the new core nodes have not yet been released in the latest stable version. Please wait for the next stable release.
    </Tab>
  </Tabs>
</Tip>

## Flux.2 Klein 4B のワークフロー

<CardGroup cols={3}>
  <Card title="4B テキストから画像への生成ワークフロー" icon="download" href="https://raw.githubusercontent.com/Comfy-Org/workflow_templates/refs/heads/main/templates/image_flux2_klein_text_to_image.json">
    Flux.2 Klein 4B 用のテキストから画像への生成ワークフローをダウンロードします。
  </Card>

  <Card title="4B 画像編集 Base" icon="download" href="https://raw.githubusercontent.com/Comfy-Org/workflow_templates/refs/heads/main/templates/image_flux2_klein_image_edit_4b_base.json">
    4B Base モデルを使用した画像編集ワークフローをダウンロードします。
  </Card>

  <Card title="4B 画像編集 Distilled" icon="download" href="https://raw.githubusercontent.com/Comfy-Org/workflow_templates/refs/heads/main/templates/image_flux2_klein_image_edit_4b_distilled.json">
    4B 蒸留版による高速画像編集ワークフローをダウンロードします。
  </Card>
</CardGroup>

## Flux.2 Klein 4B モデルのダウンロード

<CardGroup cols={2}>
  <Card title="qwen_3_4b.safetensors" icon="download" href="https://huggingface.co/Comfy-Org/flux2-klein-4B/resolve/main/split_files/text_encoders/qwen_3_4b.safetensors">
    4B モデル用のテキストエンコーダーです。
  </Card>

  <Card title="flux-2-klein-base-4b-fp8.safetensors" icon="download" href="https://huggingface.co/black-forest-labs/FLUX.2-klein-base-4b-fp8/resolve/main/flux-2-klein-base-4b-fp8.safetensors">
    拡散モデル（4B Base 版）。
  </Card>

  <Card title="flux-2-klein-4b-fp8.safetensors" icon="download" href="https://huggingface.co/black-forest-labs/FLUX.2-klein-4b-fp8/resolve/main/flux-2-klein-4b-fp8.safetensors">
    拡散モデル（4B 蒸留版）。
  </Card>

  <Card title="flux2-vae.safetensors" icon="download" href="https://huggingface.co/Comfy-Org/flux2-dev/resolve/main/split_files/vae/flux2-vae.safetensors">
    4B モデル用のVAEです。
  </Card>
</CardGroup>

**4B モデルの保存場所**

```
📂 ComfyUI/
├── 📂 models/
│   ├── 📂 text_encoders/
│   │      └── qwen_3_4b.safetensors
│   ├── 📂 diffusion_models/
│   │      ├── flux-2-klein-base-4b-fp8.safetensors
│   │      └── flux-2-klein-4b-fp8.safetensors
│   └── 📂 vae/
│          └── flux2-vae.safetensors
```

## Flux.2 Klein 9B のワークフロー

<CardGroup cols={3}>
  <Card title="9B テキストから画像への生成ワークフロー" icon="download" href="http://raw.githubusercontent.com/Comfy-Org/workflow_templates/refs/heads/main/templates/image_flux2_text_to_image_9b.json">
    Flux.2 Klein 9B 用のテキストから画像への生成ワークフローをダウンロードします。
  </Card>

  <Card title="9B 画像編集 Base" icon="download" href="http://raw.githubusercontent.com/Comfy-Org/workflow_templates/refs/heads/main/templates/image_flux2_klein_image_edit_9b_base.json">
    9B Base モデルを使用した画像編集ワークフローをダウンロードします。
  </Card>

  <Card title="9B 画像編集 Distilled" icon="download" href="http://raw.githubusercontent.com/Comfy-Org/workflow_templates/refs/heads/main/templates/image_flux2_klein_image_edit_9b_distilled.json">
    9B 蒸留版による高速画像編集ワークフローをダウンロードします。
  </Card>
</CardGroup>

## Flux.2 Klein 9B モデルのダウンロード

<Note>
  拡散モデルについては、BFL のリポジトリにアクセスし、利用規約に同意したうえでダウンロードしてください。
</Note>

<CardGroup cols={2}>
  <Card title="flux-2-klein-base-9b-fp8.safetensors" icon="download" href="https://huggingface.co/black-forest-labs/FLUX.2-klein-base-9b-fp8">
    拡散モデル（9B Base 版）。
  </Card>

  <Card title="flux-2-klein-9b-fp8.safetensors" icon="download" href="https://huggingface.co/black-forest-labs/FLUX.2-klein-9b-fp8">
    拡散モデル（9B 蒸留版）。
  </Card>

  <Card title="qwen_3_8b_fp8mixed.safetensors" icon="download" href="https://huggingface.co/Comfy-Org/flux2-klein-9B/resolve/main/split_files/text_encoders/qwen_3_8b_fp8mixed.safetensors">
    9B モデル用のテキストエンコーダーです。
  </Card>

  <Card title="flux2-vae.safetensors" icon="download" href="https://huggingface.co/Comfy-Org/flux2-dev/resolve/main/split_files/vae/flux2-vae.safetensors">
    9B モデル用のVAEです。
  </Card>
</CardGroup>

**9B モデルの保存場所**

```
📂 ComfyUI/
├── 📂 models/
│   ├── 📂 diffusion_models/
│   │      ├── flux-2-klein-9b-fp8.safetensors
│   │      └── flux-2-klein-base-9b-fp8.safetensors
│   ├── 📂 text_encoders/
│   │      └── qwen_3_8b_fp8mixed.safetensors
│   └── 📂 vae/
│          └── flux2-vae.safetensors
```
