feat: rename argument, disable by default

this prevents computers with low hardware specifications from being unnecessary blocked
This commit is contained in:
Manuel Schmid
2024-05-17 18:19:48 +02:00
parent cb34100295
commit 24721a8511
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ 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',
args_parser.parser.add_argument("--enable-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',