diff options
author | Stephen <farrenzo47@gmail.com> | 2022-10-22 19:42:00 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-23 06:26:56 +0000 |
commit | 9e1a8b7734a2881451a2efbf80def011ea41ba49 (patch) | |
tree | 6152fdbd31d2c3eed60cc7a83ca6b163f80ee11f /modules/api/processing.py | |
parent | a7c213d0f5ebb10722629b8490a5863f9ce6c4fa (diff) | |
download | stable-diffusion-webui-gfx803-9e1a8b7734a2881451a2efbf80def011ea41ba49.tar.gz stable-diffusion-webui-gfx803-9e1a8b7734a2881451a2efbf80def011ea41ba49.tar.bz2 stable-diffusion-webui-gfx803-9e1a8b7734a2881451a2efbf80def011ea41ba49.zip |
non-implemented mask with any type
Diffstat (limited to 'modules/api/processing.py')
-rw-r--r-- | modules/api/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/api/processing.py b/modules/api/processing.py index 9f1d65c0..f551fa35 100644 --- a/modules/api/processing.py +++ b/modules/api/processing.py @@ -102,5 +102,5 @@ StableDiffusionTxt2ImgProcessingAPI = PydanticModelGenerator( StableDiffusionImg2ImgProcessingAPI = PydanticModelGenerator( "StableDiffusionProcessingImg2Img", StableDiffusionProcessingImg2Img, - [{"key": "sampler_index", "type": str, "default": "Euler"}, {"key": "init_images", "type": list, "default": None}, {"key": "denoising_strength", "type": float, "default": 0.75}] + [{"key": "sampler_index", "type": str, "default": "Euler"}, {"key": "init_images", "type": list, "default": None}, {"key": "denoising_strength", "type": float, "default": 0.75}, {"key": "mask", "type": str, "default": None}] ).generate_model()
\ No newline at end of file |