mirror of
https://github.com/Hopiu/llm.git
synced 2026-05-02 02:44:44 +00:00
Promote alternative model providers in llm --help
This commit is contained in:
parent
3352eb9f57
commit
98d2c19876
2 changed files with 14 additions and 4 deletions
|
|
@ -41,11 +41,16 @@ cog.out(all_help(cli))
|
|||
```
|
||||
Usage: llm [OPTIONS] COMMAND [ARGS]...
|
||||
|
||||
Access large language models from the command-line
|
||||
Access Large Language Models from the command-line
|
||||
|
||||
Documentation: https://llm.datasette.io/
|
||||
|
||||
To get started, obtain an OpenAI key and set it like this:
|
||||
LLM can run models from many different providers. Consult the plugin directory
|
||||
for a list of available models:
|
||||
|
||||
https://llm.datasette.io/en/stable/plugins/directory.html
|
||||
|
||||
To get started with OpenAI, obtain an API key from them and:
|
||||
|
||||
$ llm keys set openai
|
||||
Enter key: ...
|
||||
|
|
|
|||
|
|
@ -121,11 +121,16 @@ def _validate_metadata_json(ctx, param, value):
|
|||
@click.version_option()
|
||||
def cli():
|
||||
"""
|
||||
Access large language models from the command-line
|
||||
Access Large Language Models from the command-line
|
||||
|
||||
Documentation: https://llm.datasette.io/
|
||||
|
||||
To get started, obtain an OpenAI key and set it like this:
|
||||
LLM can run models from many different providers. Consult the
|
||||
plugin directory for a list of available models:
|
||||
|
||||
https://llm.datasette.io/en/stable/plugins/directory.html
|
||||
|
||||
To get started with OpenAI, obtain an API key from them and:
|
||||
|
||||
\b
|
||||
$ llm keys set openai
|
||||
|
|
|
|||
Loading…
Reference in a new issue