File size: 16,810 Bytes
b3b2de2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 | """Model file registry: maps filename -> (HuggingFace repo, subfolder).
Lookups are by filename only — the same filename in two different repos is not
supported. If that ever happens we'll qualify by ComfyUI loader-type.
"""
from __future__ import annotations
import json
import logging
import os
import pathlib
from collections.abc import Iterator
from dataclasses import dataclass
from huggingface_hub import hf_hub_download
logger = logging.getLogger(__name__)
@dataclass(frozen=True)
class ModelEntry:
repo_id: str
subfolder: str = "" # path within the HF repo
comfy_type: str = "checkpoints" # ComfyUI models/<comfy_type>/ subdirectory
# If the workflow expects a different filename than what's in the HF repo
# (e.g. user's local "ltx-2.3-22b-dev_transformer_only_fp8_scaled.safetensors"
# is actually `_transformer_only_bf16.safetensors` in Kijai's repo), set
# source_filename to the actual repo filename. The local symlink/copy uses
# the registry key as its name.
source_filename: str | None = None
repo_type: str = "model" # "model" (default) or "dataset"
# When set, resolve the dataset repo path from checkpoint_n_lora index.json
# by normalized name (see model_downloader). Falls back to subfolder +
# source_filename when the index is missing or the name is not listed yet.
dataset_index_name: str | None = None
DEFAULT_TRANSFORMER_DATASET = os.getenv(
"LTX23_TRANSFORMER_DATASET", "nsfwalex/checkpoint_n_lora"
)
DEFAULT_TRANSFORMER_INDEX_NAME = os.getenv(
"LTX23_TRANSFORMER_INDEX_NAME", "dasiwa-ltx-2-3-golden-lace-v3"
)
MODEL_REGISTRY: dict[str, ModelEntry] = {
# CivitAI DaSiWa LTX 2.3 Golden Lace v3 — transformer-only checkpoint staged
# by model_downloader into the private dataset (lazy-loaded on Spaces).
"DasiwaLTX23_goldenLaceV3.safetensors": ModelEntry(
DEFAULT_TRANSFORMER_DATASET,
subfolder="checkpoints/ltxv-2-3",
comfy_type="diffusion_models",
source_filename="DasiwaLTX23_goldenLaceV3.safetensors",
repo_type="dataset",
dataset_index_name=DEFAULT_TRANSFORMER_INDEX_NAME,
),
# Main LTX 2.3 transformer + LoRAs + upscalers
"ltx-2.3-22b-distilled.safetensors": ModelEntry("Lightricks/LTX-2.3", comfy_type="checkpoints"),
"ltx-2.3-22b-dev.safetensors": ModelEntry("Lightricks/LTX-2.3", comfy_type="checkpoints"),
"ltx-2.3-spatial-upscaler-x2-1.0.safetensors": ModelEntry(
"Lightricks/LTX-2.3", comfy_type="latent_upscale_models"
),
"ltx-2.3-22b-distilled-lora-384.safetensors": ModelEntry(
"Lightricks/LTX-2.3", comfy_type="loras"
),
# Gemma 3 12B (5 shards + tokenizer/preprocessor)
**{
f"model-{i:05d}-of-00005.safetensors": ModelEntry(
"google/gemma-3-12b-it-qat-q4_0-unquantized",
comfy_type="text_encoders",
subfolder="gemma-3-12b-it",
)
for i in range(1, 6)
},
"model.safetensors.index.json": ModelEntry(
"google/gemma-3-12b-it-qat-q4_0-unquantized",
comfy_type="text_encoders",
subfolder="gemma-3-12b-it",
),
"tokenizer.model": ModelEntry(
"google/gemma-3-12b-it-qat-q4_0-unquantized",
comfy_type="text_encoders",
subfolder="gemma-3-12b-it",
),
"preprocessor_config.json": ModelEntry(
"google/gemma-3-12b-it-qat-q4_0-unquantized",
comfy_type="text_encoders",
subfolder="gemma-3-12b-it",
),
# Kijai's LTX 2.3 ComfyUI assets — files live in vae/ and text_encoders/
# subfolders within the repo, not at root.
"LTX23_video_vae_bf16.safetensors": ModelEntry(
"Kijai/LTX2.3_comfy", subfolder="vae", comfy_type="vae"
),
"LTX23_audio_vae_bf16.safetensors": ModelEntry(
"Kijai/LTX2.3_comfy", subfolder="vae", comfy_type="vae"
),
"ltx-2.3_text_projection_bf16.safetensors": ModelEntry(
"Kijai/LTX2.3_comfy", subfolder="text_encoders", comfy_type="text_encoders"
),
# IC-LoRAs
"ltx-2.3-22b-ic-lora-union-control-ref0.5.safetensors": ModelEntry(
"Lightricks/LTX-2.3-22b-IC-LoRA-Union-Control", comfy_type="loras"
),
"ltx-2.3-22b-ic-lora-motion-track-control-ref0.5.safetensors": ModelEntry(
"Lightricks/LTX-2.3-22b-IC-LoRA-Motion-Track-Control", comfy_type="loras"
),
"ltx-2-19b-ic-lora-detailer.safetensors": ModelEntry(
"Lightricks/LTX-2-19b-IC-LoRA-Detailer", comfy_type="loras"
),
"ltx-2-19b-ic-lora-pose-control.safetensors": ModelEntry(
"Lightricks/LTX-2-19b-IC-LoRA-Pose-Control", comfy_type="loras"
),
# Camera-control LoRAs (one repo each — explicit hyphen-aware capitalization
# produces "Dolly-In", "Dolly-Out", etc. matching the actual HF org repo names.)
**{
f"ltx-2-19b-lora-camera-control-{movement}.safetensors": ModelEntry(
f"Lightricks/LTX-2-19b-LoRA-Camera-Control-{'-'.join(p.capitalize() for p in movement.split('-'))}",
comfy_type="loras",
)
for movement in (
"static",
"dolly-in",
"dolly-out",
"dolly-left",
"dolly-right",
"jib-up",
"jib-down",
)
},
# ----- Renamed/aliased filenames the user's master workflow references.
# The names look like quantized variants (FP4, FP8, GGUF) but the actual
# bytes behind them are BF16 — the user's local setup uses symlinks to
# canonical sources. On Spaces we download the same canonical sources via
# huggingface_hub and place them under the workflow-expected filename.
# All of these entries set `subfolder` to the path within the repo and
# rely on hf_hub_download returning the cached snapshot path (which we
# then symlink to comfy_models/<comfy_type>/<filename>).
"gemma_3_12B_it_fp4_mixed.safetensors": ModelEntry(
# Comfy-Org/ltx-2 ships BF16 Gemma packed as `gemma_3_12B_it.safetensors`
# in split_files/text_encoders/. The workflow expects the FP4-named
# variant; we serve the same file under that name.
"Comfy-Org/ltx-2",
subfolder="split_files/text_encoders",
comfy_type="text_encoders",
source_filename="gemma_3_12B_it.safetensors",
),
"gemma_3_12B_it.safetensors": ModelEntry(
"Comfy-Org/ltx-2",
subfolder="split_files/text_encoders",
comfy_type="text_encoders",
),
"ltx-2.3-22b-dev_transformer_only_fp8_scaled.safetensors": ModelEntry(
# Kijai's BF16 transformer-only — actual repo filename has `_bf16` suffix.
"Kijai/LTX2.3_comfy",
subfolder="diffusion_models",
comfy_type="diffusion_models",
source_filename="ltx-2.3-22b-dev_transformer_only_bf16.safetensors",
),
"ltx-2-3-22b-dev-Q4_K_M.gguf": ModelEntry(
# Unsloth's GGUF in BF16 (named `…-BF16.gguf` in repo).
"unsloth/LTX-2.3-GGUF",
comfy_type="diffusion_models",
source_filename="ltx-2.3-22b-dev-BF16.gguf",
),
"taeltx2_3.safetensors": ModelEntry(
"Kijai/LTX2.3_comfy",
subfolder="vae",
comfy_type="vae",
),
"ltx-2.3-22b-distilled-lora-dynamic_fro09_avg_rank_105_bf16.safetensors": ModelEntry(
"Kijai/LTX2.3_comfy",
subfolder="loras",
comfy_type="loras",
),
}
LOADER_NODE_TYPES: tuple[str, ...] = (
"CheckpointLoaderSimple",
"UNETLoader",
"UnetLoaderGGUF",
"VAELoader",
"VAELoaderKJ",
"LoraLoader",
"Power Lora Loader (rgthree)",
"LTXVGemmaCLIPModelLoader",
"LatentUpscaleModelLoader",
"DualCLIPLoader",
)
_USER_INPUT_LOADERS = {"LoadImage", "VHS_LoadVideo", "VHS_LoadAudioUpload"}
_MODEL_EXTS = (".safetensors", ".gguf", ".pt", ".bin", ".ckpt")
def _walk_for_filenames(value, into: set[str]) -> None:
"""Depth-first walk of a node's inputs, picking out model filenames.
Power Lora Loader stores its rows nested as `inputs.lora_1 = {on, lora,
strength}` and similar — a flat values() loop misses these. Recurse
through dicts and lists/tuples so nested filenames are caught.
Skips Power Lora Loader rows with `on: false` — those LoRAs aren't
actually loaded at runtime so there's no point downloading them.
"""
if isinstance(value, str):
if value.endswith(_MODEL_EXTS) or value == "tokenizer.model":
into.add(value)
elif isinstance(value, dict):
# Power Lora Loader row: {"on": bool, "lora": "...", "strength": ...}
if "on" in value and "lora" in value and not value.get("on"):
return
for v in value.values():
_walk_for_filenames(v, into)
elif isinstance(value, (list, tuple)):
for v in value:
_walk_for_filenames(v, into)
def walk_workflow_for_models(workflow: dict) -> set[str]:
"""Return the set of model filenames referenced by the API-format workflow.
Walks `{node_id: {class_type, inputs}}` and recursively scans each node's
inputs for strings ending in a model extension. Skips loaders that read
user-supplied files (LoadImage, VHS_LoadVideo, VHS_LoadAudioUpload).
Unknown filenames are harmless — `ensure_models` log-warns and skips
anything not in the registry, so being inclusive here costs nothing.
"""
needed: set[str] = set()
for node in workflow.values():
if not isinstance(node, dict):
continue
if node.get("class_type") in _USER_INPUT_LOADERS:
continue
_walk_for_filenames(node.get("inputs") or {}, needed)
return needed
@dataclass
class DownloadEvent:
filename: str
mb_done: float
mb_total: float
def _on_spaces() -> bool:
return bool(os.environ.get("SPACES_ZERO_GPU"))
def _hf_token() -> str | None:
for key in ("HF_TOKEN", "HUGGING_FACE_HUB_TOKEN", "HUGGINGFACE_TOKEN"):
value = os.environ.get(key)
if value:
return value.strip()
return None
def _dataset_repo_path(path: str) -> str:
return path.lstrip("./")
def _load_dataset_index_entry(
dataset_repo: str, index_name: str
) -> dict | None:
try:
index_path = hf_hub_download(
repo_id=dataset_repo,
repo_type="dataset",
filename="index.json",
revision="main",
token=_hf_token(),
)
with open(index_path, encoding="utf-8") as handle:
index_json = json.load(handle)
except Exception as exc:
logger.warning("could not load dataset index from %r: %s", dataset_repo, exc)
return None
wanted = {index_name, index_name.lstrip("-"), f"-{index_name.lstrip('-')}"}
for entry in index_json.get("checkpoint", []):
entry_name = entry.get("name", "")
if entry_name in wanted or entry_name.lstrip("-") == index_name.lstrip("-"):
return entry
return None
def _resolve_dataset_hf_path(entry: ModelEntry) -> str:
"""Repo-relative path inside a dataset for hf_hub_download(filename=...)."""
if entry.dataset_index_name:
indexed = _load_dataset_index_entry(entry.repo_id, entry.dataset_index_name)
if indexed and indexed.get("path"):
return _dataset_repo_path(indexed["path"])
hf_filename = entry.source_filename or ""
if entry.subfolder:
return f"{entry.subfolder.rstrip('/')}/{hf_filename}"
return hf_filename
def _comfy_models_dir() -> pathlib.Path:
raw = os.environ.get("COMFY_MODELS_DIR")
if raw:
return pathlib.Path(raw)
if _on_spaces():
return pathlib.Path.home() / "comfyui" / "models"
return pathlib.Path(__file__).parent / "comfyui" / "models"
def ensure_models(filenames: set[str]) -> Iterator[DownloadEvent]:
"""Ensure each requested model is materialized in comfyui/models/<type>/.
Local mode: hf_hub_download into the user's HF cache; symlink to comfyui/models/.
Spaces mode: hf_hub_download with cache_dir under $HOME (no /data dependency);
files staged at ~/comfyui/models/<comfy_type>/<filename>.
Files not in MODEL_REGISTRY are skipped (with a warning) — useful when the
workflow has been manually customized with non-canonical filenames that the
user supplies via their own ComfyUI install.
Yields DownloadEvent on each successfully materialized file (mb_done==mb_total
when already cached locally).
"""
comfy_models = _comfy_models_dir()
cache_dir = pathlib.Path(
os.environ.get(
"HF_HUB_CACHE",
pathlib.Path.home() / ".cache" / "huggingface" / "hub",
)
)
for filename in filenames:
if filename not in MODEL_REGISTRY:
logger.warning(
"model file %r not in MODEL_REGISTRY; skipping. "
"Add an entry to MODEL_REGISTRY or override the loader in the workflow.",
filename,
)
continue
entry = MODEL_REGISTRY[filename]
# Short-circuit: if the file is already present at its expected location
# comfyui/models/<comfy_type>/<filename>, skip. Subfolder is part of the
# HF source path, not the destination, so the dest is always a flat
# comfyui/models/<comfy_type>/<filename>.
existing_dest = comfy_models / entry.comfy_type / filename
if existing_dest.exists() or existing_dest.is_symlink():
yield DownloadEvent(filename, 0.0, 0.0)
continue
# The HF-side filename may differ from the workflow-expected name
# (e.g. user's `_fp8_scaled.safetensors` is actually `_bf16.safetensors`
# in the upstream repo). Honor `source_filename` when set.
hf_filename = entry.source_filename or filename
if entry.repo_type == "dataset":
hf_path = _resolve_dataset_hf_path(entry)
else:
hf_path = f"{entry.subfolder}/{hf_filename}" if entry.subfolder else hf_filename
download_kwargs: dict = {
"repo_id": entry.repo_id,
"filename": hf_path,
"cache_dir": str(cache_dir),
"local_dir": None,
}
if entry.repo_type == "dataset":
download_kwargs["repo_type"] = "dataset"
token = _hf_token()
if token:
download_kwargs["token"] = token
try:
source = pathlib.Path(hf_hub_download(**download_kwargs))
size_mb = source.stat().st_size / 1024 / 1024
yield DownloadEvent(filename, size_mb, size_mb)
except Exception as exc:
# Fall back to scanning the cache for a matching file (test mode +
# offline mode). Look for either the workflow filename OR the
# HF-side filename. Skip `.no_exist/` markers and 0-byte stubs —
# the HF lib leaves those after a 404, and symlinking them past
# safetensors yields a confusing "header too small" error
# downstream.
def _viable(path):
try:
return ".no_exist" not in path.parts and path.stat().st_size > 64
except OSError:
return False
candidates = [
p for p in cache_dir.rglob(filename) if _viable(p)
] or [
p for p in cache_dir.rglob(hf_filename) if _viable(p)
]
if not candidates:
logger.warning(
"could not download or locate %r (hf=%r) in HF cache: %s; skipping",
filename, hf_filename, exc,
)
continue
source = candidates[0]
yield DownloadEvent(filename, 0.0, 0.0)
# Stage at comfy_models/<comfy_type>/<filename> (workflow-expected name).
dest_dir = comfy_models / entry.comfy_type
dest_dir.mkdir(parents=True, exist_ok=True)
dest = dest_dir / filename
if dest.is_symlink() or dest.exists():
dest.unlink()
dest.symlink_to(source)
def ensure_models_for_mode(mode: str) -> Iterator[DownloadEvent]:
"""Convenience: walk a mode's workflow and ensure all referenced models exist."""
import workflow as workflow_module # local import to avoid cycle at import time
wf = workflow_module.load_template(mode)
needed = walk_workflow_for_models(wf)
yield from ensure_models(needed)
|