From e617273d8c023148565d8a3134e03545dadc4dab Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 23 Sep 2024 21:44:26 -0700 Subject: [PATCH] attribute changed (model_args -> arch_args) --- llama_stack/cli/model/describe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/cli/model/describe.py b/llama_stack/cli/model/describe.py index b100f7544..c99cb06c1 100644 --- a/llama_stack/cli/model/describe.py +++ b/llama_stack/cli/model/describe.py @@ -55,7 +55,7 @@ class ModelDescribe(Subcommand): ("Description", model.description_markdown), ("Context Length", f"{model.max_seq_length // 1024}K tokens"), ("Weights format", model.quantization_format.value), - ("Model params.json", json.dumps(model.model_args, indent=4)), + ("Model params.json", json.dumps(model.arch_args, indent=4)), ] if model.recommended_sampling_params is not None: