mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-07 19:10:26 -08:00
Added styles to Processed
So `[styles]` pattern can use in saving image UI.
This commit is contained in:
parent
a5a08b0bee
commit
070b7d60cf
2 changed files with 3 additions and 6 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue