14 lines
460 B
Bash
Executable File
14 lines
460 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
# Open WebUI — browser UI for Ollama and other LLM backends.
|
|
# Ollama module should be installed first for full functionality.
|
|
log "Installing Open WebUI (AUR)..."
|
|
yay -S --answerdiff None --answerclean All --noconfirm open-webui
|
|
|
|
log "Enabling Open WebUI service..."
|
|
sudo systemctl enable --now open-webui.service
|
|
|
|
log "Open WebUI running at http://localhost:8080"
|