Skip to content

Commit 4bab07a

Browse files
authored
fix: fix duplicate model get help text (#188)
# What does this PR do? [Provide a short summary of what this PR does and why. Link to relevant issues if applicable.] ``` from: $ llama-stack-client models Usage: llama-stack-client models [OPTIONS] COMMAND [ARGS]... Manage GenAI models. Options: --help Show this message and exit. Commands: get Show available llama models at distribution endpoint <<<-- list Show available llama models at distribution endpoint to: $ llama-stack-client models Usage: llama-stack-client models [OPTIONS] COMMAND [ARGS]... Manage GenAI models. Options: --help Show this message and exit. Commands: get Show details of a specific model at the distribution endpoint <<<-- list Show available llama models at distribution endpoint ``` [//]: # (If resolving an issue, uncomment and update the line below) [//]: # (Closes #[issue-number]) ## Test Plan [Describe the tests you ran to verify your changes with result summaries. *Provide clear instructions so the plan can be easily re-executed.*] [//]: # (## Documentation) [//]: # (- [ ] Added a Changelog entry if the change is significant) Signed-off-by: reidliu41 <[email protected]> Co-authored-by: reidliu41 <[email protected]>
1 parent b62ac6c commit 4bab07a

File tree

1 file changed

+1
-1
lines changed
  • src/llama_stack_client/lib/cli/models

1 file changed

+1
-1
lines changed

src/llama_stack_client/lib/cli/models/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def list_models(ctx):
7070
@click.pass_context
7171
@handle_client_errors("get model details")
7272
def get_model(ctx, model_id: str):
73-
"""Show available llama models at distribution endpoint"""
73+
"""Show details of a specific model at the distribution endpoint"""
7474
client = ctx.obj["client"]
7575
console = Console()
7676

0 commit comments

Comments
 (0)