jinnabaalu / ollama-webui

ChatGPT-Style Web UI Client for Ollama πŸ¦™

Home Page:https://ollamahub.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ollama Web UI: A User-Friendly Web Interface for Chat Interactions πŸ‘‹

GitHub stars GitHub forks GitHub watchers GitHub repo size GitHub language count GitHub top language GitHub last commit Hits Discord

ChatGPT-Style Web Interface for Ollama πŸ¦™

Disclaimer: ollama-webui is a community-driven project and is not affiliated with the Ollama team in any way. This initiative is independent, and any inquiries or feedback should be directed to our community on Discord. We kindly request users to refrain from contacting or harassing the Ollama team regarding this project.

Ollama Web UI Demo

Also check our sibling project, OllamaHub, where you can discover, download, and explore customized Modelfiles for Ollama! πŸ¦™πŸ”

Features ⭐

  • πŸ–₯️ Intuitive Interface: Our chat interface takes inspiration from ChatGPT, ensuring a user-friendly experience.

  • πŸ“± Responsive Design: Enjoy a seamless experience on both desktop and mobile devices.

  • ⚑ Swift Responsiveness: Enjoy fast and responsive performance.

  • πŸš€ Effortless Setup: Install seamlessly using Docker or Kubernetes (kubectl, kustomize or helm) for a hassle-free experience.

  • πŸ’» Code Syntax Highlighting: Enjoy enhanced code readability with our syntax highlighting feature.

  • βœ’οΈπŸ”’ Full Markdown and LaTeX Support: Elevate your LLM experience with comprehensive Markdown and LaTeX capabilities for enriched interaction.

  • πŸ“œ Prompt Preset Support: Instantly access preset prompts using the '/' command in the chat input. Load predefined conversation starters effortlessly and expedite your interactions. Effortlessly import prompts through OllamaHub integration.

  • πŸ‘πŸ‘Ž RLHF Annotation: Empower your messages by rating them with thumbs up and thumbs down, facilitating the creation of datasets for Reinforcement Learning from Human Feedback (RLHF). Utilize your messages to train or fine-tune models, all while ensuring the confidentiality of locally saved data.

  • πŸ“₯πŸ—‘οΈ Download/Delete Models: Easily download or remove models directly from the web UI.

  • ⬆️ GGUF File Model Creation: Effortlessly create Ollama models by uploading GGUF files directly from the web UI. Streamlined process with options to upload from your machine or download GGUF files from Hugging Face.

  • πŸ€– Multiple Model Support: Seamlessly switch between different chat models for diverse interactions.

  • πŸ”„ Multi-Modal Support: Seamlessly engage with models that support multimodal interactions, including images (e.g., LLava).

  • 🧩 Modelfile Builder: Easily create Ollama modelfiles via the web UI. Create and add characters/agents, customize chat elements, and import modelfiles effortlessly through OllamaHub integration.

  • βš™οΈ Many Models Conversations: Effortlessly engage with various models simultaneously, harnessing their unique strengths for optimal responses. Enhance your experience by leveraging a diverse set of models in parallel.

  • 🀝 OpenAI API Integration: Effortlessly integrate OpenAI-compatible API for versatile conversations alongside Ollama models. Customize the API Base URL to link with LMStudio, Mistral, OpenRouter, and more.

  • πŸ”„ Regeneration History Access: Easily revisit and explore your entire regeneration history.

  • πŸ“œ Chat History: Effortlessly access and manage your conversation history.

  • πŸ“€πŸ“₯ Import/Export Chat History: Seamlessly move your chat data in and out of the platform.

  • πŸ—£οΈ Voice Input Support: Engage with your model through voice interactions; enjoy the convenience of talking to your model directly. Additionally, explore the option for sending voice input automatically after 3 seconds of silence for a streamlined experience.

  • βš™οΈ Fine-Tuned Control with Advanced Parameters: Gain a deeper level of control by adjusting parameters such as temperature and defining your system prompts to tailor the conversation to your specific preferences and needs.

  • πŸ”— External Ollama Server Connection: Seamlessly link to an external Ollama server hosted on a different address by configuring the environment variable.

  • πŸ” Role-Based Access Control (RBAC): Ensure secure access with restricted permissions; only authorized individuals can access your Ollama, and exclusive model creation/pulling rights are reserved for administrators.

  • πŸ”’ Backend Reverse Proxy Support: Bolster security through direct communication between Ollama Web UI backend and Ollama. This key feature eliminates the need to expose Ollama over LAN. Requests made to the '/ollama/api' route from the web UI are seamlessly redirected to Ollama from the backend, enhancing overall system security.

  • 🌟 Continuous Updates: We are committed to improving Ollama Web UI with regular updates and new features.

πŸ”— Also Check Out OllamaHub!

Don't forget to explore our sibling project, OllamaHub, where you can discover, download, and explore customized Modelfiles. OllamaHub offers a wide range of exciting possibilities for enhancing your chat interactions with Ollama! πŸš€

How to Install πŸš€

🌟 Important Note on User Roles and Privacy:

  • Admin Creation: The very first account to sign up on the Ollama Web UI will be granted Administrator privileges. This account will have comprehensive control over the platform, including user management and system settings.

  • User Registrations: All subsequent users signing up will initially have their accounts set to Pending status by default. These accounts will require approval from the Administrator to gain access to the platform functionalities.

  • Privacy and Data Security: We prioritize your privacy and data security above all. Please be reassured that all data entered into the Ollama Web UI is stored locally on your device. Our system is designed to be privacy-first, ensuring that no external requests are made, and your data does not leave your local environment. We are committed to maintaining the highest standards of data privacy and security, ensuring that your information remains confidential and under your control.

Installing Ollama Web UI Only

Prerequisites

Make sure you have the latest version of Ollama installed before proceeding with the installation. You can find the latest version of Ollama at https://ollama.ai/.

Checking Ollama

After installing Ollama, verify that Ollama is running by accessing the following link in your web browser: http://127.0.0.1:11434/. Note that the port number may differ based on your system configuration.

Using Docker 🐳

Important: When using Docker to install Ollama Web UI, make sure to include the -v ollama-webui:/app/backend/data in your Docker command. This step is crucial as it ensures your database is properly mounted and prevents any loss of data.

If Ollama is hosted on your local machine and accessible at http://127.0.0.1:11434/, run the following command:

docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v ollama-webui:/app/backend/data --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main

Alternatively, if you prefer to build the container yourself, use the following command:

docker build -t ollama-webui .
docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v ollama-webui:/app/backend/data --name ollama-webui --restart always ollama-webui

Your Ollama Web UI should now be hosted at http://localhost:3000 and accessible over LAN (or Network). Enjoy! πŸ˜„

Accessing External Ollama on a Different Server

Change OLLAMA_API_BASE_URL environment variable to match the external Ollama Server url:

docker run -d -p 3000:8080 -e OLLAMA_API_BASE_URL=https://example.com/api -v ollama-webui:/app/backend/data --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main

Alternatively, if you prefer to build the container yourself, use the following command:

docker build -t ollama-webui .
docker run -d -p 3000:8080 -e OLLAMA_API_BASE_URL=https://example.com/api -v ollama-webui:/app/backend/data --name ollama-webui --restart always ollama-webui

Installing Both Ollama and Ollama Web UI

Using Docker Compose

If you don't have Ollama installed yet, you can use the provided Docker Compose file for a hassle-free installation. Simply run the following command:

docker compose up -d --build

This command will install both Ollama and Ollama Web UI on your system.

Enable GPU

Use the additional Docker Compose file designed to enable GPU support by running the following command:

docker compose -f docker-compose.yaml -f docker-compose.gpu.yaml up -d --build
Expose Ollama API outside the container stack

Deploy the service with an additional Docker Compose file designed for API exposure:

docker compose -f docker-compose.yaml -f docker-compose.api.yaml up -d --build

Using Provided run-compose.sh Script (Linux)

Also available on Windows under any docker-enabled WSL2 linux distro (you have to enable it from Docker Desktop)

Simply run the following command to grant execute permission to script:

chmod +x run-compose.sh
For CPU only container
./run-compose.sh
Enable GPU

For GPU enabled container (to enable this you must have your gpu driver for docker, it mostly works with nvidia so this is the official install guide: nvidia-container-toolkit) Warning! A GPU-enabled installation has only been tested using linux and nvidia GPU, full functionalities are not guaranteed under Windows or Macos or using a different GPU

./run-compose.sh --enable-gpu

Note that both the above commands will use the latest production docker image in repository, to be able to build the latest local version you'll need to append the --build parameter, for example:

./run-compose.sh --enable-gpu --build

Using Alternative Methods (Kustomize or Helm)

See INSTALLATION.md for information on how to install and/or join our Ollama Web UI Discord community.

How to Install Without Docker

While we strongly recommend using our convenient Docker container installation for optimal support, we understand that some situations may require a non-Docker setup, especially for development purposes. Please note that non-Docker installations are not officially supported, and you might need to troubleshoot on your own.

Project Components

The Ollama Web UI consists of two primary components: the frontend and the backend (which serves as a reverse proxy, handling static frontend files, and additional features). Both need to be running concurrently for the development environment.

Important

The backend is required for proper functionality

Requirements πŸ“¦

Build and Install πŸ› οΈ

Run the following commands to install:

git clone https://github.com/ollama-webui/ollama-webui.git
cd ollama-webui/

# Copying required .env file
cp -RPp example.env .env

# Building Frontend Using Node
npm i
npm run build

# or Building Frontend Using Bun
# bun install
# bun run build

# Serving Frontend with the Backend
cd ./backend
pip install -r requirements.txt -U
sh start.sh

You should have the Ollama Web UI up and running at http://localhost:8080/. Enjoy! πŸ˜„

Troubleshooting

See TROUBLESHOOTING.md for information on how to troubleshoot and/or join our Ollama Web UI Discord community.

What's Next? πŸš€

Roadmap πŸ“

Here are some exciting tasks on our roadmap:

  • πŸ“š RAG Integration: Experience first-class retrieval augmented generation support, enabling chat with your documents.
  • 🌐 Web Browsing Capability: Experience the convenience of seamlessly integrating web content directly into your chat. Easily browse and share information without leaving the conversation.
  • πŸ”„ Function Calling: Empower your interactions by running code directly within the chat. Execute functions and commands effortlessly, enhancing the functionality of your conversations.
  • βš™οΈ Custom Python Backend Actions: Empower your Ollama Web UI by creating or downloading custom Python backend actions. Unleash the full potential of your web interface with tailored actions that suit your specific needs, enhancing functionality and versatility.
  • 🧠 Long-Term Memory: Witness the power of persistent memory in our agents. Enjoy conversations that feel continuous as agents remember and reference past interactions, creating a more cohesive and personalized user experience.
  • πŸ§ͺ Research-Centric Features: Empower researchers in the fields of LLM and HCI with a comprehensive web UI for conducting user studies. Stay tuned for ongoing feature enhancements (e.g., surveys, analytics, and participant tracking) to facilitate their research.
  • πŸ“ˆ User Study Tools: Providing specialized tools, like heat maps and behavior tracking modules, to empower researchers in capturing and analyzing user behavior patterns with precision and accuracy.
  • πŸ“š Enhanced Documentation: Elevate your setup and customization experience with improved, comprehensive documentation.

Feel free to contribute and help us make Ollama Web UI even better! πŸ™Œ

Supporters ✨

A big shoutout to our amazing supporters who's helping to make this project possible! πŸ™

Platinum Sponsors 🀍

  • We're looking for Sponsors!

Acknowledgments

Special thanks to Prof. Lawrence Kim @ SFU and Prof. Nick Vincent @ SFU for their invaluable support and guidance in shaping this project into a research endeavor. Grateful for your mentorship throughout the journey! πŸ™Œ

License πŸ“œ

This project is licensed under the MIT License - see the LICENSE file for details. πŸ“„

Support πŸ’¬

If you have any questions, suggestions, or need assistance, please open an issue or join our Ollama Web UI Discord community or Ollama Discord community to connect with us! 🀝


Created by Timothy J. Baek - Let's make Ollama Web UI even more amazing together! πŸ’ͺ

About

ChatGPT-Style Web UI Client for Ollama πŸ¦™

https://ollamahub.com/

License:MIT License


Languages

Language:Svelte 72.6%Language:Python 15.1%Language:TypeScript 7.4%Language:CSS 2.1%Language:Shell 1.8%Language:JavaScript 0.6%Language:HTML 0.2%Language:Dockerfile 0.1%