Headless & cloud hosts
A home server, a box you reach only by SSH, a GPU instance you rent by the hour: the daemon and CLI run happily with no desktop app and no display. Everything works from the shell, and the machine becomes a host for every device you carry.
Nothing is reduced by the missing screen. A headless host pairs, serves models, runs the Bridge, and is managed remotely exactly like a computer with the app on it.
Install
# Linux and macOS
curl -fsSL https://olace.app/install.sh | sh
# Windows (PowerShell)
irm https://olace.app/install.ps1 | iex
This installs the daemon and the olace command, offers to add it to your PATH, then continues straight into setup in the same terminal. No GUI, no runtime requirements beyond your local AI runtime of choice.
Set up
A fresh install walks through four steps, asking before each one installs anything:
- A runtime. Ollama, llama.cpp, or llmster, LM Studio's headless daemon. Every one runs without a display.
- A starter model sized to the GPU Olace detects.
- The Python sandbox, so models can run code on this machine for calculations, data files, and charts. Offered on Linux, macOS, and Windows hosts with a GPU that runs models large enough to use it.
- Sign-in, which adds Olace cloud models and lets your other devices use this machine. Local models work without it.
Every step is skipped when it is already done, and each can be run again on its own:
olace setup # the whole flow; finished steps are skipped
olace setup --provider llamacpp # add a specific runtime
olace setup --sandbox # the Python sandbox only
olace pull qwen3.5:14b # a different model
olace signin # one-time code by email
Set OLACE_NONINTERACTIVE=1 before the install script to skip the handoff, for a Dockerfile or a config-management run. Run olace setup yourself afterwards: without a terminal on stdin it prints what each step would do instead of asking, and exits 2 when a step still needs one.
olace signin offers to install the background service so the machine stays reachable across reboots. Say yes.
Make it a host
Pair your other devices to this machine so they can use its models from anywhere:
olace pair --code
Scan the QR from your phone, or type the code into another computer (olace pair claim <CODE> works too). That is the whole network setup: the machine only makes outbound connections, so there is nothing to open in your firewall or router.
Serve other apps
olace bridge on --require-key
Now any OpenAI-compatible tool on this machine can use its models, and every paired host's models, through 127.0.0.1:5578/v1. See Olace Bridge.
On a machine you rent
A rented instance hosts like any other computer. Two things are worth knowing.
The machine is not yours. The pairing is still end-to-end encrypted and Olace still cannot read your conversations, but the turn runs in that machine's memory and anything stored on it sits on the provider's disk. See Hosting on a machine you rent.
A rebuilt instance is a new device. The daemon's identity lives in ~/.olace/identity.enc and is not meant to be copied between machines, so a replacement instance arrives as a new device: install, olace signin, and pair again. Remove the pairing the old one held, or it counts against your plan's cap:
olace pair list
olace pair remove old-instance
Models live in the runtime's own store, so a fresh instance pulls them again, and the per-machine context calibration is measured again over the first few loads.
Keep an eye on it
olace status # everything at a glance
olace logs -f # follow the daemon log
olace update --check # stay current
And from your other machines, the same commands work remotely: olace status --device server, olace logs --device server, olace pull <tag> --device server.