From ac2973ffc6b9c1c8b17d66f0fd61491d3a5f6b63 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Mon, 17 Apr 2023 19:34:28 -0300 Subject: [PATCH] Add a warning for --share --- modules/shared.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/shared.py b/modules/shared.py index f068ec03..2fa90dd7 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -158,17 +158,19 @@ args_defaults = parser.parse_args([]) deprecated_dict = {} for k in deprecated_dict: if getattr(args, k) != deprecated_dict[k][1]: - print(f"Warning: --{k} is deprecated and will be removed. Use --{deprecated_dict[k][0]} instead.") + print(f"Warning: --{k} is deprecated and will be removed. Use --{deprecated_dict[k][0]} instead.\n") setattr(args, deprecated_dict[k][0], getattr(args, k)) # Deprecation warnings for parameters that have been removed if args.cai_chat: - print("Warning: --cai-chat is deprecated. Use --chat instead.") + print("Warning: --cai-chat is deprecated. Use --chat instead.\n") args.chat = True # Security warnings if args.trust_remote_code: - print("Warning: trust_remote_code is enabled. This is dangerous.") + print("Warning: trust_remote_code is enabled. This is dangerous.\n") +if args.share: + print("Warning: the gradio \"share link\" feature downloads a proprietary and\nunaudited blob to create a reverse tunnel. This is potentially dangerous.\n") def is_chat():