diff --git a/.openclaw-sync/source.json b/.openclaw-sync/source.json index ee1f9756d..9b6c77c7d 100644 --- a/.openclaw-sync/source.json +++ b/.openclaw-sync/source.json @@ -1,5 +1,5 @@ { "repository": "openclaw/openclaw", - "sha": "d78512b09d1dd06fd89060c5edaf2d5c83467b1b", - "syncedAt": "2026-04-07T18:41:08.038Z" + "sha": "86f35a9bc08ae244f2523c2c43eec21fe0f2c4f6", + "syncedAt": "2026-04-07T18:43:08.440Z" } diff --git a/docs/help/faq.md b/docs/help/faq.md index 8988c499b..0b9bdda16 100644 --- a/docs/help/faq.md +++ b/docs/help/faq.md @@ -2254,7 +2254,7 @@ for usage/billing and raise limits as needed. Quickest setup: 1. Install Ollama from `https://ollama.com/download` - 2. Pull a local model such as `ollama pull glm-4.7-flash` + 2. Pull a local model such as `ollama pull gemma4` 3. If you want cloud models too, run `ollama signin` 4. Run `openclaw onboard` and choose `Ollama` 5. Pick `Local` or `Cloud + Local` diff --git a/docs/providers/ollama.md b/docs/providers/ollama.md index 1428daa06..1e7e3b6f7 100644 --- a/docs/providers/ollama.md +++ b/docs/providers/ollama.md @@ -57,7 +57,7 @@ openclaw onboard --non-interactive \ 2. Pull a local model if you want local inference: ```bash -ollama pull glm-4.7-flash +ollama pull gemma4 # or ollama pull gpt-oss:20b # or @@ -78,12 +78,12 @@ openclaw onboard - `Local`: local models only - `Cloud + Local`: local models plus cloud models -- Cloud models such as `kimi-k2.5:cloud`, `minimax-m2.5:cloud`, and `glm-5:cloud` do **not** require a local `ollama pull` +- Cloud models such as `kimi-k2.5:cloud`, `minimax-m2.7:cloud`, and `glm-5.1:cloud` do **not** require a local `ollama pull` OpenClaw currently suggests: -- local default: `glm-4.7-flash` -- cloud defaults: `kimi-k2.5:cloud`, `minimax-m2.5:cloud`, `glm-5:cloud` +- local default: `gemma4` +- cloud defaults: `kimi-k2.5:cloud`, `minimax-m2.7:cloud`, `glm-5.1:cloud` 5. If you prefer manual setup, enable Ollama for OpenClaw directly (any value works; Ollama doesn't require a real key): @@ -99,7 +99,7 @@ openclaw config set models.providers.ollama.apiKey "ollama-local" ```bash openclaw models list -openclaw models set ollama/glm-4.7-flash +openclaw models set ollama/gemma4 ``` 7. Or set the default in config: @@ -108,7 +108,7 @@ openclaw models set ollama/glm-4.7-flash { agents: { defaults: { - model: { primary: "ollama/glm-4.7-flash" }, + model: { primary: "ollama/gemma4" }, }, }, } @@ -229,7 +229,7 @@ Once configured, all your Ollama models are available: ## Cloud models -Cloud models let you run cloud-hosted models (for example `kimi-k2.5:cloud`, `minimax-m2.5:cloud`, `glm-5:cloud`) alongside your local models. +Cloud models let you run cloud-hosted models (for example `kimi-k2.5:cloud`, `minimax-m2.7:cloud`, `glm-5.1:cloud`) alongside your local models. To use cloud models, select **Cloud + Local** mode during setup. The wizard checks whether you are signed in and opens a browser sign-in flow when needed. If authentication cannot be verified, the wizard falls back to local model defaults. @@ -355,7 +355,7 @@ To add models: ```bash ollama list # See what's installed -ollama pull glm-4.7-flash +ollama pull gemma4 ollama pull gpt-oss:20b ollama pull llama3.3 # Or another model ```