Charla is a terminal based application for chatting with language models. Charla integrates with Ollama and GitHub Models for exchanging messages with model services.
- Terminal-based chat system that supports context aware conversations with language models.
- Support for local models via Ollama and remote models via GitHub Models.
- Chat sessions are saved as markdown files in the user's documents directory when ending a chat.
- Prompt history is saved and previously entered prompts are auto-suggested.
- Switch between single-line and multi-line input modes without interrupting the chat session.
- Store default user preferences in a settings file.
- Provide a system prompt for a chat session.
- Load content from local files and web pages to append to prompts.
To use Charla with models on your computer, you need a running installation of the Ollama server and at least one supported language model must be installed. For GitHub Models you need access to the service and a GitHub token. Please refer to the documentation of the service provider you want to use for installation and setup instructions.
Install Charla using pipx
:
pipx install charla
For GitHub models, set the environment variable GITHUB_TOKEN to your token. In Bash enter:
export GITHUB_TOKEN=YOUR_GITHUB_TOKEN
After successful installation and setup you can launch the chat console with the charla
command in your terminal.
If you use Charla with Ollama, the default provider, you only need to specify the model to use, e.g.:
charla -m phi3
If you want to use GitHub Models, you have to set the provider:
charla -m gpt-4o --provider github
You can set a default model and change the default provider in your user settings file.
Settings can be specified as command line arguments and in the settings file. Command line arguments have the highest priority. The location of your settings file depends on your operating system. Use the following command to show the location:
charla settings --location
Example settings for using OpenAI's GPT-4o model and the GitHub Models service by default.
{
"model": "gpt-4o",
"chats_path": "./chats",
"prompt_history": "./prompt-history.txt",
"provider": "github",
"message_limit": 20,
"multiline": false
}
Output of charla -h
with information on all available command line options.
usage: charla [-h] [--model MODEL] [--chats-path CHATS_PATH] [--prompt-history PROMPT_HISTORY]
[--provider PROVIDER] [--message-limit MESSAGE_LIMIT] [--multiline] [--system-prompt SYSTEM_PROMPT]
[--version]
{settings} ...
Chat with language models.
positional arguments:
{settings} Sub Commands
settings Show current settings.
options:
-h, --help show this help message and exit
--model MODEL, -m MODEL
Name of language model to chat with.
--chats-path CHATS_PATH
Directory to store chats.
--prompt-history PROMPT_HISTORY
File to store prompt history.
--provider PROVIDER Name of the provider to use.
--message-limit MESSAGE_LIMIT
Maximum number of messages to send to GitHub Models service.
--multiline Use multiline mode.
--system-prompt SYSTEM_PROMPT, -sp SYSTEM_PROMPT
File that contains system prompt to use.
--version show program's version number and exit
Run the command-line interface directly from the project source without installing the package:
python -m charla.cli
Installed models:
curl http://localhost:11434/api/tags
Model info:
curl http://localhost:11434/api/show -d '{"name": "phi3"}'
Charla is distributed under the terms of the MIT license.