mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-02 01:30:18 +08:00
Add search aliases to model-related and miscellaneous nodes: - Model nodes: nodes_model_merging.py, nodes_model_advanced.py, nodes_lora_extract.py - Sampler nodes: nodes_custom_sampler.py, nodes_align_your_steps.py - Control nodes: nodes_controlnet.py, nodes_attention_multiply.py, nodes_hooks.py - Training nodes: nodes_train.py, nodes_dataset.py - Utility nodes: nodes_logic.py, nodes_canny.py, nodes_differential_diffusion.py - Architecture-specific: nodes_sd3.py, nodes_pixart.py, nodes_lumina2.py, nodes_kandinsky5.py, nodes_hidream.py, nodes_fresca.py, nodes_hunyuan3d.py - Media nodes: nodes_load_3d.py, nodes_webcam.py, nodes_preview_any.py, nodes_wanmove.py Uses search_aliases parameter in io.Schema() for v3 nodes, SEARCH_ALIASES class attribute for legacy nodes.
40 lines
1.5 KiB
Python
40 lines
1.5 KiB
Python
from typing_extensions import override
|
|
import nodes
|
|
from comfy_api.latest import ComfyExtension, io
|
|
|
|
class CLIPTextEncodePixArtAlpha(io.ComfyNode):
|
|
@classmethod
|
|
def define_schema(cls):
|
|
return io.Schema(
|
|
node_id="CLIPTextEncodePixArtAlpha",
|
|
search_aliases=["pixart prompt"],
|
|
category="advanced/conditioning",
|
|
description="Encodes text and sets the resolution conditioning for PixArt Alpha. Does not apply to PixArt Sigma.",
|
|
inputs=[
|
|
io.Int.Input("width", default=1024, min=0, max=nodes.MAX_RESOLUTION),
|
|
io.Int.Input("height", default=1024, min=0, max=nodes.MAX_RESOLUTION),
|
|
# "aspect_ratio": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 10.0, "step": 0.01}),
|
|
io.String.Input("text", multiline=True, dynamic_prompts=True),
|
|
io.Clip.Input("clip"),
|
|
],
|
|
outputs=[
|
|
io.Conditioning.Output(),
|
|
],
|
|
)
|
|
|
|
@classmethod
|
|
def execute(cls, clip, width, height, text):
|
|
tokens = clip.tokenize(text)
|
|
return io.NodeOutput(clip.encode_from_tokens_scheduled(tokens, add_dict={"width": width, "height": height}))
|
|
|
|
|
|
class PixArtExtension(ComfyExtension):
|
|
@override
|
|
async def get_node_list(self) -> list[type[io.ComfyNode]]:
|
|
return [
|
|
CLIPTextEncodePixArtAlpha,
|
|
]
|
|
|
|
async def comfy_entrypoint() -> PixArtExtension:
|
|
return PixArtExtension()
|