Automatically disable hires fix when model baseline is "stable_diffusion_xl"
Closed this issue · 1 comments
daveschumaker commented
This is tripping up users and causing a lot of friction in SDXL workflows.
Solution seems to be to silently handle this and automagically set hires
to false if baseline is SDXL:
Inside the cloneImageParams
method
if (
modelDetails[clonedParams.models[0]] &&
modelDetails[clonedParams.models[0]].baseline !== 'stable_diffusion_xl'
) {
clonedParams.hires = false
}
(Documenting this so future me doesn't hate past me when I stumble upon this).
daveschumaker commented
Fixed in today's deploy!