https://github.com/iraj-jelo/ollamate
Ollamate is an AI assistant using Ollama to run your favorite local LLMs.
https://github.com/iraj-jelo/ollamate
ai llm llms ollama ollama-app ollama-client ollama-gui ollama-python
Last synced: about 1 month ago
JSON representation
Ollamate is an AI assistant using Ollama to run your favorite local LLMs.
- Host: GitHub
- URL: https://github.com/iraj-jelo/ollamate
- Owner: iraj-jelo
- License: mit
- Created: 2025-02-08T12:30:45.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-02-11T22:57:13.000Z (8 months ago)
- Last Synced: 2025-08-19T20:35:23.679Z (about 2 months ago)
- Topics: ai, llm, llms, ollama, ollama-app, ollama-client, ollama-gui, ollama-python
- Language: Python
- Homepage:
- Size: 241 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
#
Ollamate
**Ollamate** (A playful combination of "Ollama" and "mate" implying a helpful companion ) is an **AI assistant**, using [Ollama](https://ollama.com) 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."
### 💻 How To Use It
First, install the app using:
```bash
pip install ollamate
```Then, before running the following command, make sure that you are running Ollama on your system and pulled your desired LLM model from [here](https://ollama.com/library).
⚠️ Notice that you may encounter **errors** such as:
```
ImportError: No module named ‘Tkinter’
```
or
```
ModuleNotFoundError: No module named 'tkinter' in Python
```
which are explained in the next section.To run the app:
```bash
ollamate
```
Or simply run:```bash
om
```
### Q/A
#### I'm getting ImportError or ModuleNotFoundError errors.
The errors:
```
ImportError: No module named 'tkinter'
```
or
```
ModuleNotFoundError: No module named 'tkinter' in Python
```These happen due to lack of the Tk library on your machine:
For **Ubuntu**:
```
sudo apt-get install python3-tk
```For **Fedora**:
```
sudo dnf install python3-tkinter
```For **macOS**:
```
brew install python-tk
```#### How can I contribute in this project?
- **Fork** the project
- Make your **changes**
- Build a **pull-request** on the our main project's repository