diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-09 20:16:02 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-09 20:16:02 +0000 |
commit | 86867e153f4449167e3489323df35cf04f1fffa0 (patch) | |
tree | 735b7311b84136c87ac17472ed464d1d7fb6759f /modules/txt2img.py | |
parent | d714ea4c41e4e7c0dc4730d9ea137d134691c0a2 (diff) | |
download | stable-diffusion-webui-gfx803-86867e153f4449167e3489323df35cf04f1fffa0.tar.gz stable-diffusion-webui-gfx803-86867e153f4449167e3489323df35cf04f1fffa0.tar.bz2 stable-diffusion-webui-gfx803-86867e153f4449167e3489323df35cf04f1fffa0.zip |
support for prompt styles
fix broken prompt matrix
Diffstat (limited to 'modules/txt2img.py')
-rw-r--r-- | modules/txt2img.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/txt2img.py b/modules/txt2img.py index 606421ea..070bd094 100644 --- a/modules/txt2img.py +++ b/modules/txt2img.py @@ -6,12 +6,13 @@ import modules.processing as processing from modules.ui import plaintext_to_html
-def txt2img(prompt: str, negative_prompt: str, steps: int, sampler_index: int, restore_faces: bool, tiling: bool, n_iter: int, batch_size: int, cfg_scale: float, seed: int, subseed: int, subseed_strength: float, seed_resize_from_h: int, seed_resize_from_w: int, height: int, width: int, *args):
+def txt2img(prompt: str, negative_prompt: str, prompt_style: int, steps: int, sampler_index: int, restore_faces: bool, tiling: bool, n_iter: int, batch_size: int, cfg_scale: float, seed: int, subseed: int, subseed_strength: float, seed_resize_from_h: int, seed_resize_from_w: int, height: int, width: int, *args):
p = StableDiffusionProcessingTxt2Img(
sd_model=shared.sd_model,
outpath_samples=opts.outdir_samples or opts.outdir_txt2img_samples,
outpath_grids=opts.outdir_grids or opts.outdir_txt2img_grids,
prompt=prompt,
+ prompt_style=prompt_style,
negative_prompt=negative_prompt,
seed=seed,
subseed=subseed,
|