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]")