mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-05 06:42:31 +08:00
Reformat models variable into multiline array CORE-59 (#13513)
Some checks are pending
Python Linting / Run Ruff (push) Waiting to run
Python Linting / Run Pylint (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Waiting to run
Execution Tests / test (macos-latest) (push) Waiting to run
Execution Tests / test (ubuntu-latest) (push) Waiting to run
Execution Tests / test (windows-latest) (push) Waiting to run
Test server launches without errors / test (push) Waiting to run
Unit Tests / test (macos-latest) (push) Waiting to run
Unit Tests / test (ubuntu-latest) (push) Waiting to run
Unit Tests / test (windows-2022) (push) Waiting to run
Some checks are pending
Python Linting / Run Ruff (push) Waiting to run
Python Linting / Run Pylint (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Waiting to run
Execution Tests / test (macos-latest) (push) Waiting to run
Execution Tests / test (ubuntu-latest) (push) Waiting to run
Execution Tests / test (windows-latest) (push) Waiting to run
Test server launches without errors / test (push) Waiting to run
Unit Tests / test (macos-latest) (push) Waiting to run
Unit Tests / test (ubuntu-latest) (push) Waiting to run
Unit Tests / test (windows-2022) (push) Waiting to run
Co-authored-by: Talmaj Marinc <talmaj@comfy.org>
This commit is contained in:
parent
96f1cee9f5
commit
cf9cbec596
@ -1879,6 +1879,86 @@ class CogVideoX_I2V(CogVideoX_T2V):
|
|||||||
out = model_base.CogVideoX(self, image_to_video=True, device=device)
|
out = model_base.CogVideoX(self, image_to_video=True, device=device)
|
||||||
return out
|
return out
|
||||||
|
|
||||||
models = [LotusD, Stable_Zero123, SD15_instructpix2pix, SD15, SD20, SD21UnclipL, SD21UnclipH, SDXL_instructpix2pix, SDXLRefiner, SDXL, SSD1B, KOALA_700M, KOALA_1B, Segmind_Vega, SD_X4Upscaler, Stable_Cascade_C, Stable_Cascade_B, SV3D_u, SV3D_p, SD3, StableAudio, AuraFlow, PixArtAlpha, PixArtSigma, HunyuanDiT, HunyuanDiT1, FluxInpaint, Flux, LongCatImage, FluxSchnell, GenmoMochi, LTXV, LTXAV, HunyuanVideo15_SR_Distilled, HunyuanVideo15, HunyuanImage21Refiner, HunyuanImage21, HunyuanVideoSkyreelsI2V, HunyuanVideoI2V, HunyuanVideo, CosmosT2V, CosmosI2V, CosmosT2IPredict2, CosmosI2VPredict2, ZImagePixelSpace, ZImage, Lumina2, WAN22_T2V, WAN21_T2V, WAN21_I2V, WAN21_FunControl2V, WAN21_Vace, WAN21_Camera, WAN22_Camera, WAN22_S2V, WAN21_HuMo, WAN22_Animate, WAN21_FlowRVS, WAN21_SCAIL, Hunyuan3Dv2mini, Hunyuan3Dv2, Hunyuan3Dv2_1, HiDream, Chroma, ChromaRadiance, ACEStep, ACEStep15, Omnigen2, QwenImage, Flux2, Kandinsky5Image, Kandinsky5, Anima, RT_DETR_v4, ErnieImage, SAM3, SAM31, CogVideoX_I2V, CogVideoX_T2V]
|
|
||||||
|
|
||||||
models += [SVD_img2vid]
|
models = [
|
||||||
|
LotusD,
|
||||||
|
Stable_Zero123,
|
||||||
|
SD15_instructpix2pix,
|
||||||
|
SD15,
|
||||||
|
SD20,
|
||||||
|
SD21UnclipL,
|
||||||
|
SD21UnclipH,
|
||||||
|
SDXL_instructpix2pix,
|
||||||
|
SDXLRefiner,
|
||||||
|
SDXL,
|
||||||
|
SSD1B,
|
||||||
|
KOALA_700M,
|
||||||
|
KOALA_1B,
|
||||||
|
Segmind_Vega,
|
||||||
|
SD_X4Upscaler,
|
||||||
|
Stable_Cascade_C,
|
||||||
|
Stable_Cascade_B,
|
||||||
|
SV3D_u,
|
||||||
|
SV3D_p,
|
||||||
|
SD3,
|
||||||
|
StableAudio,
|
||||||
|
AuraFlow,
|
||||||
|
PixArtAlpha,
|
||||||
|
PixArtSigma,
|
||||||
|
HunyuanDiT,
|
||||||
|
HunyuanDiT1,
|
||||||
|
FluxInpaint,
|
||||||
|
Flux,
|
||||||
|
LongCatImage,
|
||||||
|
FluxSchnell,
|
||||||
|
GenmoMochi,
|
||||||
|
LTXV,
|
||||||
|
LTXAV,
|
||||||
|
HunyuanVideo15_SR_Distilled,
|
||||||
|
HunyuanVideo15,
|
||||||
|
HunyuanImage21Refiner,
|
||||||
|
HunyuanImage21,
|
||||||
|
HunyuanVideoSkyreelsI2V,
|
||||||
|
HunyuanVideoI2V,
|
||||||
|
HunyuanVideo,
|
||||||
|
CosmosT2V,
|
||||||
|
CosmosI2V,
|
||||||
|
CosmosT2IPredict2,
|
||||||
|
CosmosI2VPredict2,
|
||||||
|
ZImagePixelSpace,
|
||||||
|
ZImage,
|
||||||
|
Lumina2,
|
||||||
|
WAN22_T2V,
|
||||||
|
WAN21_T2V,
|
||||||
|
WAN21_I2V,
|
||||||
|
WAN21_FunControl2V,
|
||||||
|
WAN21_Vace,
|
||||||
|
WAN21_Camera,
|
||||||
|
WAN22_Camera,
|
||||||
|
WAN22_S2V,
|
||||||
|
WAN21_HuMo,
|
||||||
|
WAN22_Animate,
|
||||||
|
WAN21_FlowRVS,
|
||||||
|
WAN21_SCAIL,
|
||||||
|
Hunyuan3Dv2mini,
|
||||||
|
Hunyuan3Dv2,
|
||||||
|
Hunyuan3Dv2_1,
|
||||||
|
HiDream,
|
||||||
|
Chroma,
|
||||||
|
ChromaRadiance,
|
||||||
|
ACEStep,
|
||||||
|
ACEStep15,
|
||||||
|
Omnigen2,
|
||||||
|
QwenImage,
|
||||||
|
Flux2,
|
||||||
|
Kandinsky5Image,
|
||||||
|
Kandinsky5,
|
||||||
|
Anima,
|
||||||
|
RT_DETR_v4,
|
||||||
|
ErnieImage,
|
||||||
|
SAM3,
|
||||||
|
SAM31,
|
||||||
|
CogVideoX_I2V,
|
||||||
|
CogVideoX_T2V,
|
||||||
|
SVD_img2vid,
|
||||||
|
]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user