


























@@ -7,9 +7,22 @@ read_when:
77title: "Local models"
88---
9910-Local is doable, but OpenClaw expects large context + strong defenses against prompt injection. Small cards truncate context and leak safety. Aim high: **≥2 maxed-out Mac Studios or equivalent GPU rig (~$30k+)**. A single **24 GB** GPU works only for lighter prompts with higher latency. Use the **largest / full-size model variant you can run**; aggressively quantized or “small” checkpoints raise prompt-injection risk (see [Security](/gateway/security)).
10+Local models are doable. They also raise the bar on hardware, context size, and prompt-injection defense — small or aggressively quantized cards truncate context and leak safety. This page is the opinionated guide for higher-end local stacks and custom OpenAI-compatible local servers. For lowest-friction onboarding, start with [LM Studio](/providers/lmstudio) or [Ollama](/providers/ollama) and `openclaw onboard`.
111112-If you want the lowest-friction local setup, start with [LM Studio](/providers/lmstudio) or [Ollama](/providers/ollama) and `openclaw onboard`. This page is the opinionated guide for higher-end local stacks and custom OpenAI-compatible local servers.
12+## Hardware floor
13+14+Aim high: **≥2 maxed-out Mac Studios or an equivalent GPU rig (~$30k+)** for a comfortable agent loop. A single **24 GB** GPU works only for lighter prompts at higher latency. Always run the **largest / full-size variant you can host**; small or heavily quantized checkpoints raise prompt-injection risk (see [Security](/gateway/security)).
15+16+## Pick a backend
17+18+| Backend | Use when |
19+| ---------------------------------------------------- | --------------------------------------------------------------------------- |
20+| [LM Studio](/providers/lmstudio) | First-time local setup, GUI loader, native Responses API |
21+| [Ollama](/providers/ollama) | CLI workflow, model library, hands-off systemd service |
22+| MLX / vLLM / SGLang | High-throughput self-hosted serving with an OpenAI-compatible HTTP endpoint |
23+| LiteLLM / OAI-proxy / custom OpenAI-compatible proxy | You front another model API and need OpenClaw to treat it as OpenAI |
24+25+Use Responses API (`api: "openai-responses"`) when the backend supports it (LM Studio does). Otherwise stick to Chat Completions (`api: "openai-completions"`).
13261427<Warning>
1528**WSL2 + Ollama + NVIDIA/CUDA users:** The official Ollama Linux installer enables a systemd service with `Restart=always`. On WSL2 GPU setups, autostart can reload the last model during boot and pin host memory. If your WSL2 VM repeatedly restarts after enabling Ollama, see [WSL2 crash loop](/providers/ollama#wsl2-crash-loop-repeated-reboots).
@@ -279,36 +292,27 @@ Compatibility notes for stricter OpenAI-compatible backends:
279292 }
280293```
281294282-- Some smaller or stricter local backends are unstable with OpenClaw's full
283- agent-runtime prompt shape, especially when tool schemas are included. First
284- verify the provider path with the lean local probe:
295+## Smaller or stricter backends
285296286-```bash
287- openclaw infer model run --local --model <provider/model> --prompt "Reply with exactly: pong" --json
288-```
297+If the model loads cleanly but full agent turns misbehave, work top-down — confirm transport first, then narrow the surface.
289298290- To verify the Gateway route without the full agent prompt shape, use the
291- Gateway model probe instead:
299+1. **Confirm the local model itself responds.** No tools, no agent context:
292300293-```bash
294- openclaw infer model run --gateway --model <provider/model> --prompt "Reply with exactly: pong" --json
295-```
301+```bash
302+ openclaw infer model run --local --model <provider/model> --prompt "Reply with exactly: pong" --json
303+```
304+305+2. **Confirm Gateway routing.** Sends only the supplied prompt — skips transcript, AGENTS bootstrap, context-engine assembly, tools, and bundled MCP servers, but still exercises Gateway routing, auth, and provider selection:
306+307+```bash
308+ openclaw infer model run --gateway --model <provider/model> --prompt "Reply with exactly: pong" --json
309+```
310+311+3. **Try lean mode.** If both probes pass but real agent turns fail with malformed tool calls or oversized prompts, enable `agents.defaults.experimental.localModelLean: true`. It drops the three heaviest default tools (`browser`, `cron`, `message`) so the prompt shape is smaller and less brittle. See [Experimental Features → Local model lean mode](/concepts/experimental-features#local-model-lean-mode) for the full explanation, when to use it, and how to confirm it is on.
312+313+4. **Disable tools entirely as a last resort.** If lean mode is not enough, set `models.providers.<provider>.models[].compat.supportsTools: false` for that model entry. The agent will then operate without tool calls on that model.
296314297- Both local and Gateway model probes send only the supplied prompt. The
298- Gateway probe still validates Gateway routing, auth, and provider selection,
299- but it intentionally skips prior session transcript, AGENTS/bootstrap context,
300- context-engine assembly, tools, and bundled MCP servers.
301-302- If that succeeds but normal OpenClaw agent turns fail, first try
303-`agents.defaults.experimental.localModelLean: true` to drop heavyweight
304- default tools like `browser`, `cron`, and `message`; this is an experimental
305- flag, not a stable default-mode setting. See
306-[Experimental Features](/concepts/experimental-features). If that still fails, try
307-`models.providers.<provider>.models[].compat.supportsTools: false`.
308-309-- If the backend still fails only on larger OpenClaw runs, the remaining issue
310- is usually upstream model/server capacity or a backend bug, not OpenClaw's
311- transport layer.
315+5. **Past that, the bottleneck is upstream.** If the backend still fails only on larger OpenClaw runs after lean mode and `supportsTools: false`, the remaining issue is usually upstream model or server capacity — context window, GPU memory, kv-cache eviction, or a backend bug. It is not OpenClaw's transport layer at that point.
312316313317## Troubleshooting
314318此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。