A simple Web / UI / App / Frontend to Ollama.
| Light Theme | Dark Theme |
|---|---|
Install Ollama and run the server.
Download some models. For example, one of my favorites:
$ ollama pull dolphin-mistralFor using the app itself, there are 3 options:
- Web demo (with local Ollama)
- Local Web UI
- Stand-alone app
Build one yourself (see below) or download a release from https://github.com/da-z/llamazing/releases
❗Note: In order for the standalone app to work, you have to either manually start Ollama server like this:
$ OLLAMA_ORIGINS=* ollama serveor set the property globally (once) and restart Ollama server
$ launchctl setenv OLLAMA_ORIGINS '*'$ pnpm i$ pnpm dev --openBuild app (output goes to ./dist folder)
$ pnpm buildInstall Tauri prerequisites based on your system:
$ pnpm tauri dev$ pnpm tauri build --target universal-apple-darwin$ pnpm tauri buildGood for troubleshooting a build (enables dev tools):
$ pnpm tauri build --debug