mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-05-05 05:33:36 +08:00
This reverts commit 605425bdd64d67182fb2a16b284b833994952c6a, reversing changes made to 74e6ad95f71f1d8405f04609ee1ab6a163d70276.
26 lines
785 B
Python
26 lines
785 B
Python
class CLIPTextEncodeHunyuanDiT:
|
|
@classmethod
|
|
def INPUT_TYPES(s):
|
|
return {"required": {
|
|
"clip": ("CLIP", ),
|
|
"bert": ("STRING", {"multiline": True, "dynamicPrompts": True}),
|
|
"mt5xl": ("STRING", {"multiline": True, "dynamicPrompts": True}),
|
|
}}
|
|
RETURN_TYPES = ("CONDITIONING",)
|
|
FUNCTION = "encode"
|
|
|
|
CATEGORY = "advanced/conditioning"
|
|
|
|
def encode(self, clip, bert, mt5xl):
|
|
tokens = clip.tokenize(bert)
|
|
tokens["mt5xl"] = clip.tokenize(mt5xl)["mt5xl"]
|
|
|
|
output = clip.encode_from_tokens(tokens, return_pooled=True, return_dict=True)
|
|
cond = output.pop("cond")
|
|
return ([[cond, output]], )
|
|
|
|
|
|
NODE_CLASS_MAPPINGS = {
|
|
"CLIPTextEncodeHunyuanDiT": CLIPTextEncodeHunyuanDiT,
|
|
}
|