Added styles to Processed

So `[styles]` pattern can use in saving image UI.
This commit is contained in:
Milly
2022-10-05 02:13:09 +09:00
committed by AUTOMATIC1111
parent a5a08b0bee
commit 070b7d60cf
2 changed files with 3 additions and 6 deletions

View File

@@ -121,6 +121,7 @@ class Processed:
self.denoising_strength = getattr(p, 'denoising_strength', None)
self.extra_generation_params = p.extra_generation_params
self.index_of_first_image = index_of_first_image
self.styles = p.styles
self.eta = p.eta
self.ddim_discretize = p.ddim_discretize
@@ -165,6 +166,7 @@ class Processed:
"extra_generation_params": self.extra_generation_params,
"index_of_first_image": self.index_of_first_image,
"infotexts": self.infotexts,
"styles": self.styles,
}
return json.dumps(obj)