Skip to main content
Local mode needs an OpenAI-compatible model server on your own machine. This guide covers llama.cpp on macOS and vLLM on DGX Spark, including the launch flags that matter. Open-weight weights live in the H Company Hugging Face org. Holo3 122B is hosted API-only. Use holo3-122b-a10b in hosted mode rather than downloading local weights. Good starting model IDs for local servers:
For native performance on macOS with Metal GPU acceleration, use llama.cpp with the open-weight Q4_K_M GGUF weights, which balance precision and speed. A MacBook Pro or Max with an M3 chip or newer and at least 36 GB of unified memory is recommended: the Q4_K_M weights use roughly 21 GB, and prefix caching improves performance but needs extra memory to pre-allocate the KV cache. Lower --cache-ram and --ctx-size to reduce memory use.Install llama.cpp:
Start the server:
For better efficiency, apply these tuned parameters:
llama.cpp serves on port 8080 by default, so the base URL is http://localhost:8080/v1. Any string works as the --model value.

Connect HoloDesktop CLI

With your server running, open a new terminal and point HoloDesktop CLI at it:
Local mode does not require holo login.

What’s next

Wire local mode into hosts with the environment variables in Hosted or local models, then run your first task with the Quickstart.