mirror of
https://github.com/Hopiu/llm.git
synced 2026-05-28 14:58:18 +00:00
32 lines
705 B
Markdown
32 lines
705 B
Markdown
(aliases)=
|
|
# Model aliases
|
|
|
|
LLM supports model aliases, which allow you to refer to a model by a short name instead of its full ID.
|
|
|
|
To list current aliases, run this:
|
|
|
|
```bash
|
|
llm aliases
|
|
```
|
|
Example output:
|
|
|
|
<!-- [[[cog
|
|
from click.testing import CliRunner
|
|
import sys
|
|
sys._called_from_test = True
|
|
from llm.cli import cli
|
|
result = CliRunner().invoke(cli, ["aliases", "list"])
|
|
cog.out("```\n{}```".format(result.output))
|
|
]]] -->
|
|
```
|
|
3.5 : gpt-3.5-turbo
|
|
chatgpt : gpt-3.5-turbo
|
|
chatgpt-16k : gpt-3.5-turbo-16k
|
|
3.5-16k : gpt-3.5-turbo-16k
|
|
4 : gpt-4
|
|
gpt4 : gpt-4
|
|
4-32k : gpt-4-32k
|
|
orca : orca-openai-compat
|
|
0613 : gpt-3.5-turbo-0613
|
|
```
|
|
<!-- [[[end]]] -->
|