From 7349a4be61fe6e85b9f2d4465d9c4c220df5f9d5 Mon Sep 17 00:00:00 2001 From: Alexis Rolland Date: Thu, 7 May 2026 20:27:50 +0800 Subject: [PATCH] Update display name for TextGenerate nodes --- comfy_extras/nodes_textgen.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/comfy_extras/nodes_textgen.py b/comfy_extras/nodes_textgen.py index 82a0fdb9d..d52faf815 100644 --- a/comfy_extras/nodes_textgen.py +++ b/comfy_extras/nodes_textgen.py @@ -26,6 +26,7 @@ class TextGenerate(io.ComfyNode): return io.Schema( node_id="TextGenerate", + display_name="Generate Text", category="text", search_aliases=["LLM", "gemma"], inputs=[ @@ -157,6 +158,7 @@ class TextGenerateLTX2Prompt(TextGenerate): parent_schema = super().define_schema() return io.Schema( node_id="TextGenerateLTX2Prompt", + display_name="Generate LTX2 Prompt", category=parent_schema.category, inputs=parent_schema.inputs, outputs=parent_schema.outputs,