{"id":13588878,"url":"https://github.com/HelgeSverre/ollama-gui","last_synced_at":"2025-04-08T06:32:50.465Z","repository":{"id":199152207,"uuid":"702050953","full_name":"HelgeSverre/ollama-gui","owner":"HelgeSverre","description":"A Web Interface for chatting with your local LLMs via the ollama API","archived":false,"fork":false,"pushed_at":"2025-03-03T09:31:54.000Z","size":974,"stargazers_count":972,"open_issues_count":21,"forks_count":138,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-04-06T19:01:36.005Z","etag":null,"topics":["ai","gui","ollama"],"latest_commit_sha":null,"homepage":"https://ollama-gui.vercel.app/","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HelgeSverre.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-08T10:59:03.000Z","updated_at":"2025-04-06T10:16:20.000Z","dependencies_parsed_at":"2023-10-12T07:38:15.208Z","dependency_job_id":"a7237d16-8311-4f5a-a2a8-1a3e73eb8e56","html_url":"https://github.com/HelgeSverre/ollama-gui","commit_stats":{"total_commits":66,"total_committers":7,"mean_commits":9.428571428571429,"dds":"0.10606060606060608","last_synced_commit":"b10bc1500705c3d7a4b1a724ecdd653e7af5611f"},"previous_names":["helgesverre/ollama-gui"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelgeSverre%2Follama-gui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelgeSverre%2Follama-gui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelgeSverre%2Follama-gui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelgeSverre%2Follama-gui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HelgeSverre","download_url":"https://codeload.github.com/HelgeSverre/ollama-gui/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247792218,"owners_count":20996879,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","gui","ollama"],"created_at":"2024-08-01T15:07:00.090Z","updated_at":"2025-04-08T06:32:50.459Z","avatar_url":"https://github.com/HelgeSverre.png","language":"Vue","funding_links":[],"categories":["Vue","ai"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\".github/header.png\" alt=\"Ollama GUI logo\"\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eOllama GUI\u003c/h1\u003e\n\u003cp align=\"center\"\u003eA modern web interface for chatting with your local LLMs through Ollama\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://ollama.ai\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Powered%20by-Ollama-blue?style=flat-square\" alt=\"Powered by Ollama\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/HelgeSverre/ollama-gui/blob/main/LICENSE.md\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/License-MIT-green?style=flat-square\" alt=\"MIT License\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://ollama-gui.vercel.app\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Demo-Live-success?style=flat-square\" alt=\"Live Demo\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## ✨ Features\n\n- 🖥️ Clean, modern interface for interacting with Ollama models\n- 💾 Local chat history using IndexedDB\n- 📝 Full Markdown support in messages\n- 🌙 Dark mode support\n- 🚀 Fast and responsive\n- 🔒 Privacy-focused: All processing happens locally\n\n## 🚀 Quick Start\n\n### Prerequisites (only needed for local development)\n\n1. Install [Ollama](https://ollama.ai/download)\n2. Install [Node.js](https://nodejs.org/) (v16+) and [Yarn](https://classic.yarnpkg.com/lang/en/docs/install)\n\n### Local Development\n\n```bash\n# Start Ollama server with your preferred model\nollama pull mistral  # or any other model\nollama serve\n\n# Clone and run the GUI\ngit clone https://github.com/HelgeSverre/ollama-gui.git\ncd ollama-gui\nyarn install\nyarn dev\n```\n\n### Using the Hosted Version\n\nTo use the [hosted version](https://ollama-gui.vercel.app), run Ollama with:\n\n```bash\nOLLAMA_ORIGINS=https://ollama-gui.vercel.app ollama serve\n```\n\n### Docker Deployment\n\nNo need to install anything other than `docker`.\n\n\u003e If you have GPU, please uncomment the following lines in the file `compose.yml`\n```Dockerfile\n    # deploy:\n    #   resources:\n    #     reservations:\n    #       devices:\n    #         - driver: nvidia\n    #           count: all\n    #           capabilities: [gpu]\n```\n\n#### Run\n```bash\ndocker compose up -d\n\n# Access at http://localhost:8080\n```\n\n#### Stop\n```bash\ndocker compose down\n```\n\n#### Download more models\n```bash\n# Enter the ollama container\ndocker exec -it ollama bash\n\n# Inside the container\nollama pull \u003cmodel_name\u003e\n\n# Example\nollama pull deepseek-r1:7b\n```\n\nRestart the containers using `docker compose restart`.\n\nModels will get downloaded inside the folder `./ollama_data` in the repository. You can change it inside the `compose.yml`\n\n## 🛣️ Roadmap\n\n- [x] Chat history with IndexedDB\n- [x] Markdown message formatting\n- [x] Code cleanup and organization\n- [ ] Model library browser and installer\n- [ ] Mobile-responsive design\n- [ ] File uploads with OCR support\n\n## 🛠️ Tech Stack\n\n- [Vue.js](https://vuejs.org/) - Frontend framework\n- [Vite](https://vitejs.dev/) - Build tool\n- [Tailwind CSS](https://tailwindcss.com/) - Styling\n- [VueUse](https://vueuse.org/) - Vue Composition Utilities\n- [@tabler/icons-vue](https://github.com/tabler/icons-vue) - Icons\n- Design inspired by [LangUI](https://www.langui.dev/)\n- Hosted on [Vercel](https://vercel.com/)\n\n## 📄 License\n\nReleased under the [MIT License](LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHelgeSverre%2Follama-gui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FHelgeSverre%2Follama-gui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHelgeSverre%2Follama-gui/lists"}