llm-term
Chat with LLM models directly from the command line.
Screen Recording
Installation
pipx install llm-term
Usage
Then, you can chat with the model directly from the command line:
llm-term
llm-term
works with multiple LLM providers, but by default it uses OpenAI.
Most providers require extra packages to be installed, so make sure you
read the Providers section below. To use a different provider, you
can set the --provider
/ -p
flag:
llm-term --provider anthropic
If needed, make sure you have your LLM’s API key set as an environment variable
(this can also set via the --api-key
/ -k
flag in the CLI). If your LLM uses
a particular environment variable for its API key, such as OPENAI_API_KEY
,
that will be detected automatically.
export LLM_API_KEY="xxxxxxxxxxxxxx"
Optionally, you can set a custom model. llm-term defaults
to gpt-3.5-turbo
(this can also set via the --model
/ -m
flag in the CLI):
export LLM_MODEL="gpt-4"
Want to start the conversion directly from the command line? No problem,
just pass your prompt to llm-term
:
llm-term show me python code to detect a palindrome
You can also set a custom system prompt. llm-term defaults to a reasonable
prompt for chatting with the model, but you can set your own prompt (this
can also set via the --system
/ -s
flag in the CLI):
export LLM_SYSTEM_MESSAGE="You are a helpful assistant who talks like a pirate."
Providers
OpenAI
By default, llm-term uses OpenAI as your LLM provider. The default model is
gpt-3.5-turbo
and you can also use the OPENAI_API_KEY
environment variable
to set your API key.
Anthropic
Anthropic is a new LLM provider that is currently in private beta. You can
request access to the beta here. The default
model is claude
, and you can use the ANTHROPIC_API_KEY
environment variable.
To use anthropic
as your provider you must install the anthropic
extra.
pipx install "llm-term[anthropic]"
llm-term --provider anthropic
GPT4All
GPT4All is a an open source LLM provider. These models run locally on your
machine, so you don’t need to worry about API keys or rate limits. The default
model is mistral-7b-openorca.Q4_0.gguf
, and you can see what models are available on the GPT4All
Website. Models are downloaded automatically when you first use them.
To use GPT4All as your provider you must install the gpt4all
extra.
pipx install "llm-term[gpt4all]"
llm-term --provider gpt4all --model mistral-7b-openorca.Q4_0.gguf