Skip to content

Commit 1be7904

Browse files
authored
fix: correct toolgroups_id parameter name on unregister call (#235)
1 parent e3d812e commit 1be7904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llama_stack_client/lib/cli/toolgroups/toolgroups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def unregister_toolgroup(ctx, toolgroup_id: str):
118118
client = ctx.obj["client"]
119119
console = Console()
120120

121-
response = client.toolgroups.unregister(tool_group_id=toolgroup_id)
121+
response = client.toolgroups.unregister(toolgroup_id=toolgroup_id)
122122
if response:
123123
console.print(f"[green]Successfully deleted toolgroup {toolgroup_id}[/green]")
124124

0 commit comments

Comments
 (0)