feat: add argument to disable automatic uov image description

This commit is contained in:
Manuel Schmid
2024-05-17 17:42:15 +02:00
parent 72f59c9554
commit cb34100295
2 changed files with 11 additions and 7 deletions
+3
View File
@@ -31,6 +31,9 @@ args_parser.parser.add_argument("--disable-metadata", action='store_true',
args_parser.parser.add_argument("--disable-preset-download", action='store_true',
help="Disables downloading models for presets", default=False)
args_parser.parser.add_argument("--disable-describe-uov-image", action='store_true',
help="Disables automatic description of uov images when prompt is empty", default=False)
args_parser.parser.add_argument("--always-download-new-model", action='store_true',
help="Always download newer models ", default=False)