diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-27 09:59:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-27 09:59:37 +0300 |
commit | a9dc307a210780546b970c68773f1ba39ac594c2 (patch) | |
tree | 581bfbf872ec5f2ea9b999dcef1456b1d30105b9 /webui.py | |
parent | dbe072dcffd20c1d17d25b0cdde765cb9e7c74aa (diff) | |
parent | dc11748dea36e7618a7cdad55526fa9d6faaa6cf (diff) |
Merge pull request #1066 from moorehousew/master
Add support for checkpoint merging
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -85,7 +85,8 @@ def webui(): txt2img=wrap_gradio_gpu_call(modules.txt2img.txt2img),
img2img=wrap_gradio_gpu_call(modules.img2img.img2img),
run_extras=wrap_gradio_gpu_call(modules.extras.run_extras),
- run_pnginfo=modules.extras.run_pnginfo
+ run_pnginfo=modules.extras.run_pnginfo,
+ run_modelmerger=modules.extras.run_modelmerger
)
demo.launch(
|