You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
806 B
25 lines
806 B
|
|
|
|
class CLIPTextEncodeControlnet: |
|
@classmethod |
|
def INPUT_TYPES(s): |
|
return {"required": {"clip": ("CLIP", ), "conditioning": ("CONDITIONING", ), "text": ("STRING", {"multiline": True, "dynamicPrompts": True})}} |
|
RETURN_TYPES = ("CONDITIONING",) |
|
FUNCTION = "encode" |
|
|
|
CATEGORY = "_for_testing/conditioning" |
|
|
|
def encode(self, clip, conditioning, text): |
|
tokens = clip.tokenize(text) |
|
cond, pooled = clip.encode_from_tokens(tokens, return_pooled=True) |
|
c = [] |
|
for t in conditioning: |
|
n = [t[0], t[1].copy()] |
|
n[1]['cross_attn_controlnet'] = cond |
|
n[1]['pooled_output_controlnet'] = pooled |
|
c.append(n) |
|
return (c, ) |
|
|
|
NODE_CLASS_MAPPINGS = { |
|
"CLIPTextEncodeControlnet": CLIPTextEncodeControlnet |
|
}
|
|
|