Files
automatic/pipelines/vibe/__init__.py
T
CalamitousFelicitousness 3368ce95f7 feat(pipelines): wire native_spec for Qwen-Image and custom-class arches
Qwen-Image: diffusers registers a no-op identity lambda for
QwenImageTransformer2DModel; from_single_file silently accepted any
key naming and loaded with mismatches. QWEN_SPEC sets converter=None
to short-circuit the no-op.

Custom transformer classes (Lens, Step1X-Edit, VIBE Sana, f-lite):
runtime-registered onto diffusers, never in SINGLE_FILE_LOADABLE_CLASSES.
Specs land in each arch's existing pipelines/<arch>/__init__.py.

NextStep skipped: loader returns None up front.
2026-05-31 00:24:33 +01:00

12 lines
391 B
Python

"""VIBE pipeline components for SD.Next."""
from pipelines.native_transformer import TransformerSpec
from .vibe_sana_editing import VIBESanaEditingModel
from .vibe_sana_pipeline import VIBESanaEditingPipeline, VIBESanaImagePipeline
VIBE_SPEC = TransformerSpec(cls=VIBESanaEditingModel)
__all__ = ["VIBE_SPEC", "VIBESanaEditingModel", "VIBESanaEditingPipeline", "VIBESanaImagePipeline"]