We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
llama-stack-client provider inspect
1 parent f063f2d commit e33b5bfCopy full SHA for e33b5bf
src/llama_stack_client/lib/cli/providers/inspect.py
@@ -14,9 +14,9 @@ def inspect_provider(ctx, provider_id):
14
client = ctx.obj["client"]
15
console = Console()
16
17
- providers_response = client.providers.inspect(provider_id=provider_id)
+ providers_response = client.providers.retrieve(provider_id=provider_id)
18
19
- if providers_response is None:
+ if not providers_response:
20
click.secho("Provider not found", fg="red")
21
raise click.exceptions.Exit(1)
22
0 commit comments