From fa16c671315f78f7936600d0adcf5b7ae4bf5d5e Mon Sep 17 00:00:00 2001 From: Aaron <29749331+aarnphm@users.noreply.github.com> Date: Tue, 30 May 2023 12:02:00 -0700 Subject: [PATCH] fix(cli): remove debug print Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com> --- src/openllm/cli.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/openllm/cli.py b/src/openllm/cli.py index 73d43ddc..5a5cd153 100644 --- a/src/openllm/cli.py +++ b/src/openllm/cli.py @@ -342,9 +342,7 @@ def start_model_command( from bentoml._internal.configuration.containers import BentoMLContainer nonlocal config - print(attrs) config, server_attrs = config.model_validate_click(**attrs) - print(config.model_dump_json(), server_attrs) if ModelEnv.get_framework_env() == "flax": llm = openllm.AutoFlaxLLM.for_model(model_name, pretrained=pretrained, llm_config=config)