the text-based terminal client for Ollama.
- intuitive and simple terminal UI, no need to run servers, frontends, just type
oterm
in your terminal. - multiple persistent chat sessions, stored together with system prompt & parameter customizations in sqlite.
- can use any of the models you have pulled in Ollama, or your own custom models.
- allows for easy customization of the model's system prompt and parameters.
- supports tools integration for providing external information to the model.
Ollama needs to be installed and running in order to use oterm
. Please follow the Ollama Installation Guide.
Using brew
for MacOS:
brew tap ggozad/formulas
brew install ggozad/formulas/oterm
Using yay
(or any AUR helper) for Arch Linux:
yay -S oterm
Using pip
:
pip install oterm
To update oterm to the latest version, you can use the same method you used for installation:
Using brew
for MacOS:
brew upgrade ggozad/formulas/oterm
Using 'yay' (or any AUR helper) for Arch Linux:
yay -Syu oterm
Using pip
:
pip install --upgrade oterm
In order to use oterm
you will need to have the Ollama server running. By default it expects to find the Ollama API running on http://127.0.0.1:11434
. If you are running Ollama inside docker or on a different host/port, use the OLLAMA_HOST
environment variable to customize the host/port. Alternatively you can use OLLAMA_URL
to specify the full http(s) url. Setting OTERM_VERIFY_SSL
to False
will disable SSL verification.
OLLAMA_URL=http://host:port
To start oterm
simply run:
oterm
By pressing ^ Ctrl+p you can access the command palette from where you can perform most of the chat actions. The following commands are available:
New chat
- create a new chat sessionEdit chat parameters
- edit the current chat session (change system prompt, parameters or format)Rename chat
- rename the current chat sessionExport chat
- export the current chat session as markdownDelete chat
- delete the current chat sessionClear chat
- clear the chat history, preserving model and system prompt customizationsRegenerate last Ollama message
- regenerates the last message from Ollama (will override theseed
for the specific message with a random one.) Useful if you want to change the system prompt or parameters or just want to try again.Pull model
- pull a model or update an existing one.Change theme
- choose among the available themes.
The following keyboard shortcuts are supported:
-
^ Ctrl+q - quit
-
^ Ctrl+l - switch to multiline input mode
-
^ Ctrl+i - select an image to include with the next message
-
↑ - navigate through history of previous prompts
-
^ Ctrl+n - open a new chat
-
^ Ctrl+Backspace - close the current chat
-
^ Ctrl+Tab - open the next chat
-
^ Ctrl+Shift+Tab - open the previous chat
In multiline mode, you can press Enter to send the message, or Shift+Enter to add a new line at the cursor.
While Ollama is inferring the next message, you can press Esc to cancel the inference.
Note that some of the shortcuts may not work in a certain context, for example pressing ↑ while the prompt is in multi-line mode.
When creating a new chat, you may not only select the model, but also customize the following:
system
instruction prompttools
used (some sample tools are included, more to come in future versions)- chat
parameters
(such as context length, seed, temperature etc) passed to the model. For a list of all supported parameters refer to the Ollama documentation. - Ouput
format
/structured output. In the format field you can specify either- nothing, in which case Ollama will return the output as text.
- use Ollama's Structured Output specifying the full format as JSON schema. See here for more information.
You can also "edit" an existing chat to change the system prompt, parameters, tools or format. Note, that the model cannot be changed once the chat has started.
Since version 0.6.0
oterm
supports integration with tools. Tools are special "functions" that can provide external information to the LLM model that it does not otherwise have access to.
The following tools are currently supported:
fetch_url
- allows your models access to the web, fetches a URL and provides the content as input to the model.date_time
- provides the current date and time in ISO format.current_location
- provides the current location of the user (longitude, latitude, city, region, country). Uses ipinfo.io to determine the location.current_weather
- provides the current weather in the user's location. Uses OpenWeatherMap to determine the weather. You need to provide your (free) API key in the OPEN_WEATHER_MAP_API_KEY environment variable.shell
- allows you to run shell commands and use the output as input to the model. Obviously this can be dangerous, so use with caution.
When using tools, you will have to wait for the tools & model to finish before you see the response as streaming is not currently supported.
It is (relatively) easy to add your own tools. See the tools documentation for more information.
It is difficult to properly support copy/paste in terminal applications. You can copy blocks to your clipboard as such:
- clicking a message will copy it to the clipboard.
- clicking a code block will only copy the code block to the clipboard.
For most terminals there exists a key modifier you can use to click and drag to manually select text. For example:
iTerm
Option key.Gnome Terminal
Shift key.Windows Terminal
Shift key.
All your chat sessions are stored locally in a sqlite database. You can customize the directory where the database is stored by setting the OTERM_DATA_DIR
environment variable.
You can find the location of the database by running oterm --db
.
The app configuration is stored in a directory specific to your operating system, by default:
- Linux:
~/.local/share/oterm/config.json
- macOS:
~/Library/Application Support/oterm/config.json
- Windows:
C:/Users/<USER>/AppData/Roaming/oterm/config.json
If in doubt you can get the directory where config.json
can be found by running oterm --data-dir
.
You can set the following options in the configuration file:
{ "splash-screen": true }
splash-screen
controls whether the splash screen is shown on startup.
We strive to have sane default key bindings, but there will always be cases where your terminal emulator or shell will interfere. You can customize select keybindings by editing the app config config.json
file. The following are the defaults:
{
...
"keymap": {
"next.chat": "ctrl+tab",
"prev.chat": "ctrl+shift+tab",
"quit": "ctrl+q",
"newline": "shift+enter"
}
}
The splash screen animation that greets users when they start oterm.
A view of the chat interface, showcasing the conversation between the user and the model.
The model selection screen, allowing users to choose from available models.
The image selection interface, demonstrating how users can include images in their conversations.
oTerm supports multiple themes, allowing users to customize the appearance of the interface.
This project is licensed under the MIT License.