Hide deprecated args from Session tab

This commit is contained in:
oobabooga 2023-11-21 15:15:16 -08:00
parent 0047d9f5e0
commit 2769a1fa25
2 changed files with 3 additions and 2 deletions

View file

@ -195,7 +195,8 @@ for arg in sys.argv[1:]:
provided_arguments.append(arg)
# Deprecation warnings
for k in ['notebook', 'chat', 'no_stream', 'mul_mat_q', 'use_fast']:
deprecated_args = ['notebook', 'chat', 'no_stream', 'mul_mat_q', 'use_fast']
for k in deprecated_args:
if getattr(args, k):
logger.warning(f'The --{k} flag has been deprecated and will be removed soon. Please remove that flag.')

View file

@ -58,7 +58,7 @@ def set_interface_arguments(extensions, bool_active):
def get_boolean_arguments(active=False):
exclude = ["default", "notebook", "chat"]
exclude = shared.deprecated_args
cmd_list = vars(shared.args)
bool_list = sorted([k for k in cmd_list if type(cmd_list[k]) is bool and k not in exclude + ui.list_model_elements()])