fixes sdxl clip_l

This commit is contained in:
dnl13
2023-11-01 14:07:47 +01:00
parent 9536622211
commit 77d3c444ca
2 changed files with 39 additions and 22 deletions

View File

@@ -4110,7 +4110,7 @@ class TSC_Tiled_Upscaler:
@classmethod
def INPUT_TYPES(cls):
# Split the list based on the keyword "tile"
cnet_filenames = [name for name in folder_paths.get_filename_list("controlnet") if "tile" in name]
cnet_filenames = [name for name in folder_paths.get_filename_list("controlnet")]
return {"required": {"upscale_by": ("FLOAT", {"default": 1.25, "min": 0.01, "max": 8.0, "step": 0.05}),
"tile_size": ("INT", {"default": 512, "min": 256, "max": MAX_RESOLUTION, "step": 64}),