You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"model": ([item.nameforiteminPath(folder_paths.models_dir, "LLM").iterdir() ifitem.is_dir()], {"tooltip": "models are expected to be in Comfyui/models/LLM folder"}),
184
+
"model": ([*s.model_paths], {"tooltip": "models are expected to be in Comfyui/models/LLM folder"}),
183
185
"precision": (['fp16','bf16','fp32'],),
184
186
"attention": (
185
187
[ 'flash_attention_2', 'sdpa', 'eager'],
@@ -189,6 +191,7 @@ def INPUT_TYPES(s):
189
191
},
190
192
"optional": {
191
193
"lora": ("PEFTLORA",),
194
+
"convert_to_safetensors": ("BOOLEAN", {"default": False, "tooltip": "Some of the older model weights are not saved in .safetensors format, which seem to cause longer loading times, this option converts the .bin weights to .safetensors"}),
"convert_to_safetensors": ("BOOLEAN", {"default": False, "tooltip": "Some of the older model weights are not saved in .safetensors format, which seem to cause longer loading times, this option converts the .bin weights to .safetensors"}),
0 commit comments