Skip to content

Commit e86035b

Browse files
committed
Update impact scheduler list
1 parent b497c75 commit e86035b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nodes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,13 +171,13 @@ def get_names(self, sampler_name):
171171

172172
class SchedulerSelector:
173173
CATEGORY = 'ImageSaver/utils'
174-
RETURN_TYPES = (comfy.samplers.KSampler.SCHEDULERS + ['AYS SDXL', 'AYS SD1', 'AYS SVD'], "STRING",)
174+
RETURN_TYPES = (comfy.samplers.KSampler.SCHEDULERS + ['AYS SDXL', 'AYS SD1', 'AYS SVD', 'GITS[coeff=1.2]'], "STRING",)
175175
RETURN_NAMES = ("scheduler", "scheduler_name")
176176
FUNCTION = "get_names"
177177

178178
@classmethod
179179
def INPUT_TYPES(cls):
180-
return {"required": {"scheduler": (comfy.samplers.KSampler.SCHEDULERS + ['AYS SDXL', 'AYS SD1', 'AYS SVD'],)}}
180+
return {"required": {"scheduler": (comfy.samplers.KSampler.SCHEDULERS + ['AYS SDXL', 'AYS SD1', 'AYS SVD', 'GITS[coeff=1.2]'],)}}
181181

182182
def get_names(self, scheduler):
183183
return (scheduler, scheduler)
@@ -216,7 +216,7 @@ class SchedulerToString:
216216

217217
@classmethod
218218
def INPUT_TYPES(cls):
219-
return {"required": {"scheduler": (comfy.samplers.KSampler.SCHEDULERS + ['AYS SDXL', 'AYS SD1', 'AYS SVD'],)}}
219+
return {"required": {"scheduler": (comfy.samplers.KSampler.SCHEDULERS + ['AYS SDXL', 'AYS SD1', 'AYS SVD', 'GITS[coeff=1.2]'],)}}
220220

221221
def get_names(self, scheduler):
222222
return (scheduler)

0 commit comments

Comments
 (0)