@@ -92,6 +92,10 @@ class Text2Video:
9292 def __init__ (self ):
9393 self .output_dir = folder_paths .get_output_directory ()
9494
95+ @classmethod
96+ def IS_CHANGED (cls , * args , ** kwargs ):
97+ return float ("NaN" )
98+
9599 @classmethod
96100 def INPUT_TYPES (cls ):
97101 return {
@@ -152,6 +156,10 @@ def run(self, client, prompt, loop, aspect_ratio, save, filename):
152156class Image2Video :
153157 def __init__ (self ):
154158 self .output_dir = folder_paths .get_output_directory ()
159+
160+ @classmethod
161+ def IS_CHANGED (cls , * args , ** kwargs ):
162+ return float ("NaN" )
155163
156164 @classmethod
157165 def INPUT_TYPES (cls ):
@@ -230,6 +238,10 @@ def run(
230238class InterpolateGenerations :
231239 def __init__ (self ):
232240 self .output_dir = folder_paths .get_output_directory ()
241+
242+ @classmethod
243+ def IS_CHANGED (cls , * args , ** kwargs ):
244+ return float ("NaN" )
233245
234246 @classmethod
235247 def INPUT_TYPES (cls ):
@@ -302,6 +314,10 @@ def run(
302314class ExtendGeneration :
303315 def __init__ (self ):
304316 self .output_dir = folder_paths .get_output_directory ()
317+
318+ @classmethod
319+ def IS_CHANGED (cls , * args , ** kwargs ):
320+ return float ("NaN" )
305321
306322 @classmethod
307323 def INPUT_TYPES (cls ):
@@ -512,6 +528,10 @@ def run(
512528class ImageGeneration :
513529 def __init__ (self ):
514530 self .output_dir = folder_paths .get_output_directory ()
531+
532+ @classmethod
533+ def IS_CHANGED (cls , * args , ** kwargs ):
534+ return float ("NaN" )
515535
516536 @classmethod
517537 def INPUT_TYPES (cls ):
@@ -593,6 +613,10 @@ def run(
593613class ModifyImage :
594614 def __init__ (self ):
595615 self .output_dir = folder_paths .get_output_directory ()
616+
617+ @classmethod
618+ def IS_CHANGED (cls , * args , ** kwargs ):
619+ return float ("NaN" )
596620
597621 @classmethod
598622 def INPUT_TYPES (cls ):
@@ -629,7 +653,7 @@ def run(self, client, model, prompt, modify_image_ref, filename=""):
629653 completed = True
630654 elif generation .state == "failed" :
631655 raise ValueError (f"Generation failed: { generation .failure_reason } " )
632- time .sleep (1 )
656+ time .sleep (3 )
633657
634658 image_url = generation .assets .image
635659 directory , filename = parse_filename (filename )
0 commit comments