Ollamate (A playful combination of "Ollama" and "mate" implying a helpful companion ) is an AI assistant, using Ollama to run your favorite LLMs locally as your assistant.
It support an user-friendly GUI, making interaction with Ollama easier and more gentle than before. Additionally in future, it will support a simple RAG system and multiple different tools making daily routine tasks a no-brainer.
"This project is licensed under the terms of the MIT license."
First, install the app using:
pip install ollamateThen, before running the following command, make sure that you are running Ollama on your system and pulled your desired LLM model from here.
⚠️ Notice that you may encounter errors such as:
ImportError: No module named ‘Tkinter’or
ModuleNotFoundError: No module named 'tkinter' in Pythonwhich are explained in the next section.
To run the app:
ollamateOr simply run:
omThe errors:
ImportError: No module named 'tkinter'or
ModuleNotFoundError: No module named 'tkinter' in PythonThese happen due to lack of the Tk library on your machine:
For Ubuntu:
sudo apt-get install python3-tkFor Fedora:
sudo dnf install python3-tkinterFor macOS:
brew install python-tkFork the project
Make your changes
Build a pull-request on the our main project's repository