diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-09-07 01:01:16 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-09-07 01:01:16 +0000 |
commit | 340fce2113b6d68f06f5bb8c897be998f03b4c8c (patch) | |
tree | 65d1117bd59ea2397764907298b381bc7aaac7b2 /modules/shared_options.py | |
parent | d39440bfb9d3b20338fc23a78e6655b1e2f7c1d5 (diff) | |
download | stable-diffusion-webui-gfx803-340fce2113b6d68f06f5bb8c897be998f03b4c8c.tar.gz stable-diffusion-webui-gfx803-340fce2113b6d68f06f5bb8c897be998f03b4c8c.tar.bz2 stable-diffusion-webui-gfx803-340fce2113b6d68f06f5bb8c897be998f03b4c8c.zip |
enable console prompts in settings
Diffstat (limited to 'modules/shared_options.py')
-rw-r--r-- | modules/shared_options.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared_options.py b/modules/shared_options.py index 00b273fa..44fb1670 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -100,6 +100,7 @@ options_templates.update(options_section(('face-restoration', "Face restoration" options_templates.update(options_section(('system', "System"), {
"auto_launch_browser": OptionInfo("Local", "Automatically open webui in browser on startup", gr.Radio, lambda: {"choices": ["Disable", "Local", "Remote"]}),
+ "enable_console_prompts": OptionInfo(False, "Print prompts to console when generating with txt2img and img2img."),
"show_warnings": OptionInfo(False, "Show warnings in console.").needs_reload_ui(),
"show_gradio_deprecation_warnings": OptionInfo(True, "Show gradio deprecation warnings in console.").needs_reload_ui(),
"memmon_poll_rate": OptionInfo(8, "VRAM usage polls per second during generation.", gr.Slider, {"minimum": 0, "maximum": 40, "step": 1}).info("0 = disable"),
|