11 lines
326 B
Bash
Executable File
11 lines
326 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Open WebUI — browser UI for Ollama and other LLM backends.
|
|
# Ollama module should be installed first for full functionality.
|
|
yay -S --answerdiff None --answerclean All --noconfirm open-webui
|
|
|
|
sudo systemctl enable --now open-webui.service
|
|
|
|
echo "Open WebUI running at http://localhost:8080"
|