From de04de7136e8d8c7f57211531ca936536dc0362d Mon Sep 17 00:00:00 2001 From: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Date: Sun, 12 Nov 2023 18:59:48 -0500 Subject: [PATCH] fix(sdk): make sure build to quiet out stdout (#622) Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com> --- openllm-python/src/openllm_cli/_sdk.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openllm-python/src/openllm_cli/_sdk.py b/openllm-python/src/openllm_cli/_sdk.py index 47e46aae..dc545b24 100644 --- a/openllm-python/src/openllm_cli/_sdk.py +++ b/openllm-python/src/openllm_cli/_sdk.py @@ -198,6 +198,7 @@ def _build( 'build', model_id, '--machine', + '--quiet', '--serialisation', first_not_none( serialisation, default='safetensors' if has_safetensors_weights(model_id, model_version) else 'legacy'