diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-14 12:55:40 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-14 12:55:40 +0000 |
commit | 08c6f009a5ee92dd3218a942c08e8337c26352be (patch) | |
tree | a4398b52b1fc3cac9ec9a69e9098996ed18ca11b /modules/shared.py | |
parent | febd2b722e80959b89a0e5966a159b4eb430c5a5 (diff) | |
download | stable-diffusion-webui-gfx803-08c6f009a5ee92dd3218a942c08e8337c26352be.tar.gz stable-diffusion-webui-gfx803-08c6f009a5ee92dd3218a942c08e8337c26352be.tar.bz2 stable-diffusion-webui-gfx803-08c6f009a5ee92dd3218a942c08e8337c26352be.zip |
load hashes from cache for checkpoints that have them
add checkpoint hash to footer
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index a6c61db3..c9988d4d 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -458,6 +458,7 @@ options_templates.update(options_section(('sampler-params', "Sampler parameters" options_templates.update(options_section((None, "Hidden options"), {
"disabled_extensions": OptionInfo([], "Disable those extensions"),
+ "sd_checkpoint_hash": OptionInfo("", "SHA256 hash of the current checkpoint"),
}))
options_templates.update()
|