mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-03-07 22:31:50 -08:00
Change init_images default back to None
This commit is contained in:
parent
43e893ce2a
commit
2f75ae9f2c
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ StableDiffusionImg2ImgProcessingAPI = PydanticModelGenerator(
|
|||
StableDiffusionProcessingImg2Img,
|
||||
[
|
||||
{"key": "sampler_index", "type": str, "default": "Euler"},
|
||||
{"key": "init_images", "type": list, "default": []},
|
||||
{"key": "init_images", "type": list | None, "default": None},
|
||||
{"key": "denoising_strength", "type": float, "default": 0.75},
|
||||
{"key": "mask", "type": str | None, "default": None},
|
||||
{"key": "include_init_images", "type": bool, "default": False, "exclude" : True},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue