From 4f011b9a0041e4600de117679bf6c9870f66dcc9 Mon Sep 17 00:00:00 2001 From: comfyanonymous <comfyanonymous@protonmail.com> Date: Sun, 26 Jan 2025 06:04:57 -0500 Subject: [PATCH] Better CLIPTextEncode error when clip input is None. --- nodes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nodes.py b/nodes.py index ef51994e..968f0f9a 100644 --- a/nodes.py +++ b/nodes.py @@ -63,6 +63,8 @@ class CLIPTextEncode(ComfyNodeABC): DESCRIPTION = "Encodes a text prompt using a CLIP model into an embedding that can be used to guide the diffusion model towards generating specific images." def encode(self, clip, text): + if clip is None: + raise RuntimeError("ERROR: clip input is invalid: None\n\nIf the clip is from a checkpoint loader node your checkpoint does not contain a valid clip or text encoder model.") tokens = clip.tokenize(text) return (clip.encode_from_tokens_scheduled(tokens), )