Skip to content

Commit d79345e

Browse files
fix: helptext for 'inspect version' and 'providers inspect' (#8)
Supersedes #251 Signed-off-by: Nathan Weinberg <nweinber@redhat.com>
1 parent 10ef53e commit d79345e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/llama_stack_client/lib/cli/inspect/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@click.pass_context
1010
@handle_client_errors("inspect version")
1111
def inspect_version(ctx):
12-
"""Show available providers on distribution endpoint"""
12+
"""Show Llama Stack version on distribution endpoint"""
1313
client = ctx.obj["client"]
1414
console = Console()
1515
version_response = client.inspect.version()

src/llama_stack_client/lib/cli/providers/inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@click.pass_context
1111
@handle_client_errors("inspect providers")
1212
def inspect_provider(ctx, provider_id):
13-
"""Show available providers on distribution endpoint"""
13+
"""Show specific provider configuration on distribution endpoint"""
1414
client = ctx.obj["client"]
1515
console = Console()
1616

0 commit comments

Comments
 (0)