ABOUT
LocalAGI is a self-hostable AI agent platform with a web UI, OpenAI-compatible APIs, and local-first model orchestration.
infoThis script builds LocalAGI from source (Go + Bun) and runs it as a systemd service.
infoThis Proxmox script runs LocalAGI in external-backend mode and does not provision local ROCm/NVIDIA runtimes.
infoBy default, LocalAGI is configured to call an OpenAI-compatible backend at `http://127.0.0.1:11434/v1` (Ollama-compatible) via `LOCALAGI_LLM_API_URL`.
infoTo use an external Ollama host, edit `/opt/localagi/.env` and set `LOCALAGI_LLM_API_URL=http://<ollama-host>:11434/v1`, then restart LocalAGI with `systemctl restart localagi`.
INSTALL
Approved local installer
DefaultDebian 13
Approved locally2 CPU4096 MB RAM20 GB disk
Config path/opt/localagi/.env
Run this command in the Proxmox VE shell. It downloads the immutable approved file, verifies SHA-256, and only then executes it.
( url='https://scripts.francoisvw.com/snapshots/c19711ea1b2526bec67e34be948114e255b5a811/ct/localagi.sh'; sha='b61f8b057491f23ca4c3173ec86c7ee24dfa54567c42910a62f143f8022ebc47'; tmp="$(mktemp)" || exit; curl -fsSL "$url" -o "$tmp" && printf '%s %s\n' "$sha" "$tmp" | sha256sum -c - && bash "$tmp"; rc=$?; rm -f "$tmp"; exit "$rc" )
View approved source ↗Path ct/localagi.shSHA-256 b61f8b057491f23ca4c3173ec86c7ee24dfa54567c42910a62f143f8022ebc47 LOCAL CHANGE REVIEW
Approved vs latest fetched source
Sign in with a passkey to inspect pending source changes. Approved content remains public.