diff --git a/docs/usage.md b/docs/usage.md index 4ac07e85..e1a4bb3f 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -517,6 +517,7 @@ OpenAI Completion: gpt-3.5-turbo-instruct (aliases: 3.5-instruct, chatgpt-instru Integer seed to attempt to sample deterministically logprobs: int Include the log probabilities of most likely N per token +Default: gpt-4o-mini ``` diff --git a/llm/cli.py b/llm/cli.py index f4a9d32c..31936676 100644 --- a/llm/cli.py +++ b/llm/cli.py @@ -1121,6 +1121,7 @@ def models_list(options, async_): ) output += "\n Attachment types:\n{}".format(wrapper.fill(attachment_types)) click.echo(output) + click.echo(f"Default: {get_default_model()}") @models.command(name="default")