diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-03 14:21:15 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-03 14:21:15 +0000 |
commit | f40617d6c4e366773677baa8d7f4114ba2893282 (patch) | |
tree | 7e5e1810017d11133c4294190124ad74e1b2d961 /modules/txt2img.py | |
parent | 345028099d893f8a66726cfd13627d8cc1bcc724 (diff) | |
download | stable-diffusion-webui-gfx803-f40617d6c4e366773677baa8d7f4114ba2893282.tar.gz stable-diffusion-webui-gfx803-f40617d6c4e366773677baa8d7f4114ba2893282.tar.bz2 stable-diffusion-webui-gfx803-f40617d6c4e366773677baa8d7f4114ba2893282.zip |
support for scripts
Diffstat (limited to 'modules/txt2img.py')
-rw-r--r-- | modules/txt2img.py | 27 |
1 files changed, 5 insertions, 22 deletions
diff --git a/modules/txt2img.py b/modules/txt2img.py index d03a29f2..f5ac0540 100644 --- a/modules/txt2img.py +++ b/modules/txt2img.py @@ -1,4 +1,4 @@ -
+import modules.scripts
from modules.processing import StableDiffusionProcessing, Processed, StableDiffusionProcessingTxt2Img, StableDiffusionProcessingImg2Img, process_images
from modules.shared import opts, cmd_opts
import modules.shared as shared
@@ -6,7 +6,7 @@ import modules.processing as processing from modules.ui import plaintext_to_html
-def txt2img(prompt: str, negative_prompt: str, steps: int, sampler_index: int, use_GFPGAN: bool, prompt_matrix: bool, n_iter: int, batch_size: int, cfg_scale: float, seed: int, height: int, width: int, code: str):
+def txt2img(prompt: str, negative_prompt: str, steps: int, sampler_index: int, use_GFPGAN: bool, n_iter: int, batch_size: int, cfg_scale: float, seed: int, height: int, width: int, *args):
p = StableDiffusionProcessingTxt2Img(
sd_model=shared.sd_model,
outpath_samples=opts.outdir_samples or opts.outdir_txt2img_samples,
@@ -21,30 +21,13 @@ def txt2img(prompt: str, negative_prompt: str, steps: int, sampler_index: int, u cfg_scale=cfg_scale,
width=width,
height=height,
- prompt_matrix=prompt_matrix,
use_GFPGAN=use_GFPGAN
)
- if code != '' and cmd_opts.allow_code:
- p.do_not_save_grid = True
- p.do_not_save_samples = True
-
- display_result_data = [[], -1, ""]
-
- def display(imgs, s=display_result_data[1], i=display_result_data[2]):
- display_result_data[0] = imgs
- display_result_data[1] = s
- display_result_data[2] = i
-
- from types import ModuleType
- compiled = compile(code, '', 'exec')
- module = ModuleType("testmodule")
- module.__dict__.update(globals())
- module.p = p
- module.display = display
- exec(compiled, module.__dict__)
+ processed = modules.scripts.run(p, *args)
- processed = Processed(p, *display_result_data)
+ if processed is not None:
+ pass
else:
processed = process_images(p)
|