Add has_intermediate_output flag for nodes with interactive UI (#13048)

This commit is contained in:
Terry Jia
2026-03-27 21:06:38 -04:00
committed by GitHub
parent 3a56201da5
commit 3696c5bad6
6 changed files with 54 additions and 5 deletions
+5
View File
@@ -709,6 +709,11 @@ class PromptServer():
else:
info['output_node'] = False
if hasattr(obj_class, 'HAS_INTERMEDIATE_OUTPUT') and obj_class.HAS_INTERMEDIATE_OUTPUT == True:
info['has_intermediate_output'] = True
else:
info['has_intermediate_output'] = False
if hasattr(obj_class, 'CATEGORY'):
info['category'] = obj_class.CATEGORY