Update shared_options.py
Browse files- shared_options.py +1 -1
shared_options.py
CHANGED
@@ -285,7 +285,7 @@ options_templates.update(options_section(('infotext', "Infotext"), {
|
|
285 |
options_templates.update(options_section(('ui', "Live previews"), {
|
286 |
"show_progressbar": OptionInfo(True, "Show progressbar"),
|
287 |
"live_previews_enable": OptionInfo(True, "Show live previews of the created image"),
|
288 |
-
"live_previews_image_format": OptionInfo("
|
289 |
"show_progress_grid": OptionInfo(True, "Show previews of all images generated in a batch as a grid"),
|
290 |
"show_progress_every_n_steps": OptionInfo(10, "Live preview display period", gr.Slider, {"minimum": -1, "maximum": 32, "step": 1}).info("in sampling steps - show new live preview image every N sampling steps; -1 = only show after completion of batch"),
|
291 |
"show_progress_type": OptionInfo("Approx NN", "Live preview method", gr.Radio, {"choices": ["Full", "Approx NN", "Approx cheap", "TAESD"]}).info("Full = slow but pretty; Approx NN and TAESD = fast but low quality; Approx cheap = super fast but terrible otherwise"),
|
|
|
285 |
options_templates.update(options_section(('ui', "Live previews"), {
|
286 |
"show_progressbar": OptionInfo(True, "Show progressbar"),
|
287 |
"live_previews_enable": OptionInfo(True, "Show live previews of the created image"),
|
288 |
+
"live_previews_image_format": OptionInfo("jpeg", "Live preview file format", gr.Radio, {"choices": ["jpeg", "png", "webp"]}),
|
289 |
"show_progress_grid": OptionInfo(True, "Show previews of all images generated in a batch as a grid"),
|
290 |
"show_progress_every_n_steps": OptionInfo(10, "Live preview display period", gr.Slider, {"minimum": -1, "maximum": 32, "step": 1}).info("in sampling steps - show new live preview image every N sampling steps; -1 = only show after completion of batch"),
|
291 |
"show_progress_type": OptionInfo("Approx NN", "Live preview method", gr.Radio, {"choices": ["Full", "Approx NN", "Approx cheap", "TAESD"]}).info("Full = slow but pretty; Approx NN and TAESD = fast but low quality; Approx cheap = super fast but terrible otherwise"),
|