aboutsummaryrefslogtreecommitdiffstats
path: root/modules/txt2img.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-09-14 14:56:21 +0000
committerAUTOMATIC <16777216c@gmail.com>2022-09-14 14:56:21 +0000
commit9f267af3f7404d8d8a9123e8e1c07a6557eba54d (patch)
tree2e4a0c310f8f78377f295edf7867f2a70b39fa96 /modules/txt2img.py
parent6153d9d9e9d51708e8f96eb8aaecf168adfcf4b7 (diff)
downloadstable-diffusion-webui-gfx803-9f267af3f7404d8d8a9123e8e1c07a6557eba54d.tar.gz
stable-diffusion-webui-gfx803-9f267af3f7404d8d8a9123e8e1c07a6557eba54d.tar.bz2
stable-diffusion-webui-gfx803-9f267af3f7404d8d8a9123e8e1c07a6557eba54d.zip
added a second style field
added the ability to use {prompt} in styles added a button to apply style to textbox rearranged top row for UI
Diffstat (limited to 'modules/txt2img.py')
-rw-r--r--modules/txt2img.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/txt2img.py b/modules/txt2img.py
index d60febfc..30d89849 100644
--- a/modules/txt2img.py
+++ b/modules/txt2img.py
@@ -6,13 +6,13 @@ import modules.processing as processing
from modules.ui import plaintext_to_html
-def txt2img(prompt: str, negative_prompt: str, prompt_style: 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: str, prompt_style2: 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):
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,
+ styles=[prompt_style, prompt_style2],
negative_prompt=negative_prompt,
seed=seed,
subseed=subseed,