Skip to content

Commit 1920e3a

Browse files
committed
fix: broken .retreive call using identifier=
identifier is not a valid argument for `retreive` but model_id is. Signed-off-by: Charlie Doern <cdoern@redhat.com>
1 parent 78de6d4 commit 1920e3a

File tree

1 file changed

+1
-1
lines changed
  • src/llama_stack_client/lib/cli/models

1 file changed

+1
-1
lines changed

src/llama_stack_client/lib/cli/models/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def get_model(ctx, model_id: str):
7272
client = ctx.obj["client"]
7373
console = Console()
7474

75-
models_get_response = client.models.retrieve(identifier=model_id)
75+
models_get_response = client.models.retrieve(model_id=model_id)
7676

7777
if not models_get_response:
7878
console.print(

0 commit comments

Comments
 (0)