Go to file
Timothy J. Baek 4bc04fe3a5 doc: demo updated 2023-11-14 23:31:12 -08:00
.github Update docker-build.yaml 2023-11-08 04:00:13 -05:00
backend feat: backend reverse proxy 2023-11-14 16:28:51 -08:00
src doc: demo updated 2023-11-14 23:31:12 -08:00
static ollama placeholder added 2023-10-08 15:58:33 -07:00
.eslintignore chat feature added 2023-10-08 15:38:42 -07:00
.eslintrc.cjs chat feature added 2023-10-08 15:38:42 -07:00
.gitignore chat feature added 2023-10-08 15:38:42 -07:00
.npmrc chat feature added 2023-10-08 15:38:42 -07:00
.prettierignore chat feature added 2023-10-08 15:38:42 -07:00
.prettierrc chat feature added 2023-10-08 15:38:42 -07:00
Caddyfile.localhost feat: update .env.example and add Caddyfile 2023-10-22 12:26:55 -06:00
Dockerfile feat: backend reverse proxy 2023-11-14 16:28:51 -08:00
LICENSE chore: revert license change 2023-11-14 13:32:59 -08:00
README.md doc: auth header support added to features 2023-11-14 14:30:47 -08:00
TROUBLESHOOTING.md doc: troubleshooting guide moved 2023-11-14 12:20:51 -08:00
compose.yaml feat: docker compose backend support update 2023-11-14 16:42:10 -08:00
demo.gif doc: demo updated 2023-11-14 23:31:12 -08:00
example.env doc: clarify usage of OLLAMA_API_BASE_URL 2023-10-22 12:26:55 -06:00
package-lock.json feat: gravatar support added 2023-11-05 13:25:23 -08:00
package.json feat: backend reverse proxy 2023-11-14 16:28:51 -08:00
postcss.config.js chore: npm run fmt 2023-10-21 22:47:30 -06:00
run.sh feat: backend reverse proxy 2023-11-14 16:28:51 -08:00
svelte.config.js feat: backend reverse proxy 2023-11-14 16:28:51 -08:00
tailwind.config.js fix: select options text 2023-11-09 09:31:28 -08:00
tsconfig.json chat feature added 2023-10-08 15:38:42 -07:00
vite.config.ts chat feature added 2023-10-08 15:38:42 -07:00

README.md

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 🦙

Ollama Web UI Demo

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 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.

  • 📥🗑️ Download/Delete Models: Easily download or remove models directly from the web UI.

  • 🤖 Multiple Model Support: Seamlessly switch between different chat models for diverse interactions.

  • ⚙️ 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 Model Integration: Seamlessly utilize OpenAI models alongside Ollama models for a versatile conversational experience.

  • 🔄 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 during the Docker build phase. Additionally, you can also set the external server connection URL from the web UI post-build.

  • 🔑 Auth Header Support: Securely access Ollama servers with added Authorization headers for enhanced authentication.

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

How to Install 🚀

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/.

Installing Both Ollama and Ollama Web UI Using Docker Compose

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

docker compose up --build

This command will install both Ollama and Ollama Web UI on your system. Ensure to modify the compose.yaml file for GPU support if needed.

Checking Ollama

After installing, 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.

Accessing Ollama Web Interface over LAN

If you want to access the Ollama web interface over LAN, for example, from your phone, run Ollama using the following command:

OLLAMA_HOST=0.0.0.0 OLLAMA_ORIGINS=* ollama serve

In case you encounter any issues running the command and encounter errors, ensure to turn off any existing Ollama service that might be running in the background before retrying.

If you're running Ollama via Docker:

docker run -d -v ollama:/root/.ollama -p 11434:11434 -e OLLAMA_ORIGINS="*" --name ollama ollama/ollama

Using Docker 🐳

If Ollama is hosted on your local machine, run the following command:

docker run -d -p 3000:8080 --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 --build-arg OLLAMA_API_BASE_URL='' -t ollama-webui .
docker run -d -p 3000:8080 --name ollama-webui --restart always ollama-webui

Your Ollama Web UI should now be hosted at http://localhost:3000. Enjoy! 😄

Connecting to Ollama on a Different Server

If Ollama is hosted on a server other than your local machine, change OLLAMA_API_BASE_URL to match:

docker build --build-arg OLLAMA_API_BASE_URL='https://example.com/api' -t ollama-webui .
docker run -d -p 3000:8080 --name ollama-webui --restart always ollama-webui

How to Build for Static Deployment

  1. Install node

    # Mac, Linux
    curl https://webi.sh/node@lts | sh
    source ~/.config/envman/PATH.env
    
    # Windows
    curl.exe https://webi.ms/node@lts | powershell
    
  2. Clone & Enter the project

    git clone https://github.com/ollama-webui/ollama-webui.git
    pushd ./ollama-webui/
    
  3. Create and edit .env

    cp -RPp example.env .env
    
  4. Run in dev mode, or build the site for deployment

    • Test in Dev mode:
      npm run dev
      
    • Build for Deploy:
      (PUBLIC_API_BASE_URL will overwrite the value in .env)
      PUBLIC_API_BASE_URL='https://example.com/api' npm run build
      
  5. Test the build with caddy (or the server of your choice)

    curl https://webi.sh/caddy | sh
    
    PUBLIC_API_BASE_URL='https://localhost/api' npm run build
    caddy run --envfile .env --config ./Caddyfile.localhost
    

Troubleshooting

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

What's Next? 🚀

To-Do List 📝

Here are some exciting tasks on our to-do list:

  • 🧪 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.
  • 🌐 Web Browser Extension: Seamlessly integrate our services into your browsing experience with our convenient browser extension.
  • 📚 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 🤍

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! 💪