https://github.com/cacilhas/llama-desktop
Desktop app to prompt Ollama servers
https://github.com/cacilhas/llama-desktop
Last synced: 11 months ago
JSON representation
Desktop app to prompt Ollama servers
- Host: GitHub
- URL: https://github.com/cacilhas/llama-desktop
- Owner: cacilhas
- License: mit
- Created: 2024-01-23T00:43:33.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-05-08T16:01:16.000Z (about 1 year ago)
- Last Synced: 2025-05-08T17:20:28.824Z (about 1 year ago)
- Language: Rust
- Size: 1.77 MB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
[MIT]: https://github.com/cacilhas/llama-desktop/blob/master/COPYING
[Llama]: https://raw.githubusercontent.com/cacilhas/llama-desktop/master/src/assets/logo.png
[Ollama]: https://ollama.ai/
# Llamma Desktop
![Llama][]
Desktop app to connect to [Ollama][] and send queries.
Llama Desktop reads the Ollama service URI from the environment variable
`OLLAMA_HOST`, defaults to `http://localhost:11434`.
## Installation
### Ollama
In case you have an NVIDIA GPU and want to run Ollama locally:
```sh
curl -fsSL https://ollama.com/install.sh | sh
systemctl enable ollama
systemctl start ollama
ollama pull mistral:latest
ollama pull phind-codellama:latest
```
### Last stable release
```sh
cargo install llama-desktop
```
### Development version
```sh
cargo install git@github.com:cacilhas/llama-desktop.git
```
## License
- [MIT][]