From 17f980785a565977ed86e0f1d85252bb727a3199 Mon Sep 17 00:00:00 2001 From: gabemontero Date: Tue, 10 Jun 2025 13:23:41 -0400 Subject: [PATCH] fix: correct toolgroups_id parameter name on unregister call --- src/llama_stack_client/lib/cli/toolgroups/toolgroups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llama_stack_client/lib/cli/toolgroups/toolgroups.py b/src/llama_stack_client/lib/cli/toolgroups/toolgroups.py index 5a80a6ce..1e3d921d 100644 --- a/src/llama_stack_client/lib/cli/toolgroups/toolgroups.py +++ b/src/llama_stack_client/lib/cli/toolgroups/toolgroups.py @@ -118,7 +118,7 @@ def unregister_toolgroup(ctx, toolgroup_id: str): client = ctx.obj["client"] console = Console() - response = client.toolgroups.unregister(tool_group_id=toolgroup_id) + response = client.toolgroups.unregister(toolgroup_id=toolgroup_id) if response: console.print(f"[green]Successfully deleted toolgroup {toolgroup_id}[/green]")