cddb07a176
docs / deploy (push) Has been cancelled
docs / changes (push) Has been cancelled
docs / check-and-build (push) Has been cancelled
build container image / cpu (push) Has been cancelled
build container image / cuda (push) Has been cancelled
build container image / rocm (push) Has been cancelled
frontend checks / frontend-checks (push) Has been cancelled
frontend tests / frontend-tests (push) Has been cancelled
lfs checks / lfs-check (push) Has been cancelled
python checks / python-checks (push) Has been cancelled
python tests / py3.12: macos-default (push) Has been cancelled
python tests / py3.11: windows-cpu (push) Has been cancelled
python tests / py3.12: windows-cpu (push) Has been cancelled
python tests / py3.11: linux-cpu (push) Has been cancelled
typegen checks / typegen-checks (push) Has been cancelled
uv lock checks / uv-lock-checks (push) Has been cancelled
openapi checks / openapi-checks (push) Has been cancelled
python tests / py3.11: macos-default (push) Has been cancelled
python tests / py3.12: linux-cpu (push) Has been cancelled
87 lines
3.3 KiB
Python
87 lines
3.3 KiB
Python
from invokeai.app.invocations.baseinvocation import (
|
|
BaseInvocation,
|
|
BaseInvocationOutput,
|
|
Classification,
|
|
invocation,
|
|
invocation_output,
|
|
)
|
|
from invokeai.app.invocations.fields import FieldDescriptions, Input, InputField, OutputField
|
|
from invokeai.app.invocations.model import (
|
|
ModelIdentifierField,
|
|
Qwen3EncoderField,
|
|
TransformerField,
|
|
VAEField,
|
|
)
|
|
from invokeai.app.services.shared.invocation_context import InvocationContext
|
|
from invokeai.backend.model_manager.taxonomy import BaseModelType, ModelType, SubModelType
|
|
|
|
|
|
@invocation_output("anima_model_loader_output")
|
|
class AnimaModelLoaderOutput(BaseInvocationOutput):
|
|
"""Anima model loader output."""
|
|
|
|
transformer: TransformerField = OutputField(description=FieldDescriptions.transformer, title="Transformer")
|
|
qwen3_encoder: Qwen3EncoderField = OutputField(description=FieldDescriptions.qwen3_encoder, title="Qwen3 Encoder")
|
|
vae: VAEField = OutputField(description=FieldDescriptions.vae, title="VAE")
|
|
|
|
|
|
@invocation(
|
|
"anima_model_loader",
|
|
title="Main Model - Anima",
|
|
tags=["model", "anima"],
|
|
category="model",
|
|
version="1.4.0",
|
|
classification=Classification.Prototype,
|
|
)
|
|
class AnimaModelLoaderInvocation(BaseInvocation):
|
|
"""Loads an Anima model, outputting its submodels.
|
|
|
|
Anima uses:
|
|
- Transformer: Cosmos Predict2 DiT + LLM Adapter (from single-file checkpoint)
|
|
- Qwen3 Encoder: Qwen3 0.6B (standalone single-file)
|
|
- VAE: AutoencoderKLQwenImage / Wan 2.1 VAE (standalone single-file or FLUX VAE)
|
|
|
|
The T5-XXL tokenizer needed for LLM Adapter token IDs is bundled in the package,
|
|
so no T5-XXL encoder model needs to be installed.
|
|
"""
|
|
|
|
model: ModelIdentifierField = InputField(
|
|
description="Anima main model (transformer + LLM adapter).",
|
|
input=Input.Direct,
|
|
ui_model_base=BaseModelType.Anima,
|
|
ui_model_type=ModelType.Main,
|
|
title="Transformer",
|
|
)
|
|
|
|
vae_model: ModelIdentifierField = InputField(
|
|
description="Standalone VAE model. Anima uses a Wan 2.1 / QwenImage VAE (16-channel). "
|
|
"A FLUX VAE can also be used as a compatible fallback.",
|
|
input=Input.Direct,
|
|
ui_model_type=ModelType.VAE,
|
|
title="VAE",
|
|
)
|
|
|
|
qwen3_encoder_model: ModelIdentifierField = InputField(
|
|
description="Standalone Qwen3 0.6B Encoder model.",
|
|
input=Input.Direct,
|
|
ui_model_type=ModelType.Qwen3Encoder,
|
|
title="Qwen3 Encoder",
|
|
)
|
|
|
|
def invoke(self, context: InvocationContext) -> AnimaModelLoaderOutput:
|
|
# Transformer always comes from the main model
|
|
transformer = self.model.model_copy(update={"submodel_type": SubModelType.Transformer})
|
|
|
|
# VAE
|
|
vae = self.vae_model.model_copy(update={"submodel_type": SubModelType.VAE})
|
|
|
|
# Qwen3 Encoder
|
|
qwen3_tokenizer = self.qwen3_encoder_model.model_copy(update={"submodel_type": SubModelType.Tokenizer})
|
|
qwen3_encoder = self.qwen3_encoder_model.model_copy(update={"submodel_type": SubModelType.TextEncoder})
|
|
|
|
return AnimaModelLoaderOutput(
|
|
transformer=TransformerField(transformer=transformer, loras=[]),
|
|
qwen3_encoder=Qwen3EncoderField(tokenizer=qwen3_tokenizer, text_encoder=qwen3_encoder),
|
|
vae=VAEField(vae=vae),
|
|
)
|