diff --git a/CHANGELOG.md b/CHANGELOG.md index 522a2ca3c..0f6182695 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,6 +56,7 @@ And (*as always*) many bugfixes and improvements to existing features! - redesigned **GPU monitor** - standard-ui: *system -> gpu monitor* - modern-ui: *aside -> console -> gpu monitor* + - supported for *nVidia CUDA* and *AMD ROCm* platforms - configurable interval in *settings -> user interface* - updated *models* tab - updated *models -> current* tab diff --git a/modules/ui_models.py b/modules/ui_models.py index 141558878..5a7b58076 100644 --- a/modules/ui_models.py +++ b/modules/ui_models.py @@ -500,7 +500,7 @@ def create_ui(): with gr.Row(): civit_nsfw = gr.Checkbox(label='NSFW allowed', value=True) with gr.Row(): - civit_type = gr.Textbox(label='Model type', placeholder='Checkpoint, LORA, ...') + civit_type = gr.Textbox(label='Target model type', placeholder='Checkpoint, LORA, ...', value='') with gr.Row(): # civit_base = gr.Textbox(label='Base model', placeholder='SDXL, ...') civit_base = gr.Dropdown(choices=base_models, label='Base model', value='')