mirror of
https://github.com/Hopiu/llm.git
synced 2026-05-04 03:44:44 +00:00
Don't show default model for llm models -q, closes #710
This commit is contained in:
parent
f95dd55cda
commit
02e59a201e
1 changed files with 2 additions and 1 deletions
|
|
@ -1142,7 +1142,8 @@ def models_list(options, async_, query):
|
|||
)
|
||||
output += "\n Attachment types:\n{}".format(wrapper.fill(attachment_types))
|
||||
click.echo(output)
|
||||
click.echo(f"Default: {get_default_model()}")
|
||||
if not query:
|
||||
click.echo(f"Default: {get_default_model()}")
|
||||
|
||||
|
||||
@models.command(name="default")
|
||||
|
|
|
|||
Loading…
Reference in a new issue