Make strength optional to avoid validation errors when loading old workflows, adjust step

This commit is contained in:
Jedrzej Kosinski 2025-09-19 14:06:25 -07:00
parent 78e527dc90
commit eff33dd492

View File

@ -8,10 +8,13 @@ class DifferentialDiffusion():
return {
"required": {
"model": ("MODEL", ),
},
"optional": {
"strength": ("FLOAT", {
"default": 1.0,
"min": 0.0,
"max": 1.0
"max": 1.0,
"step": 0.01,
}),
}
}