Zama is a cross-platform lightweight desktop application to manage and chat with local large language models using Ollama, it's built with Tauri and Preact.
The only feature that requires you to be connected to the internet is model lookup and model installation.
- Browse model library
- Install models
- Chat with models
- Customize temperature, context length, and system prompt
- Select models
- Copy responses (clipboard icon under model responses)
- Remove/delete models
- Auto update
- Ollama status check and auto-start functionality
- Dark/light mode support
- Chat history
- Markdown support
- Huggingface and Ollama model support. (GGUF format, only text-generation is supported for now.)
and more to come soon!
You can download and run the latest release installer script directly from GitHub.
Bash/Linux/macOS:
curl -L https://raw.githubusercontent.com/myferr/zama/main/scripts/install.sh | bashPowerShell/Windows: (Requires PowerShell 7 or later)
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/myferr/zama/main/scripts/install.ps1" -OutFile install.ps1; .\install.ps1; Remove-Item install.ps1; setx OLLAMA_ORIGINS "*"If you wish to build Zama from source, you'll need git, Rust toolchain, Node.js, pnpm/yarn/npm/bun, and Ollama.
git clone https://github.com/myferr/zama.git
cd zama
npm install # or yarn, pnpm, bun
npm run tauri build # or yarn, pnpm, bunFor installation guides, the contribution guide, and more check out the Wiki page
This project is licensed under the MIT License - see the LICENSE file for details.
MIT License
Copyright (c) 2025 MyferIsADev
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
