From 6e881cfd4f1602de6f356062b2078a0461add678 Mon Sep 17 00:00:00 2001 From: Barry Downes Date: Sat, 5 Aug 2023 18:40:19 +1000 Subject: [PATCH] Rename DynamicPrompt output from STRING -> text. --- nodes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nodes.py b/nodes.py index 21a2054df..58e85bcee 100644 --- a/nodes.py +++ b/nodes.py @@ -1476,6 +1476,8 @@ class DynamicPrompt: } RETURN_TYPES = ("STRING",) + RETURN_NAMES = ("text",) + FUNCTION = "dynamic_prompt" CATEGORY = "conditioning"