You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ claude-local() {
121
121
ANTHROPIC_BASE_URL=http://localhost:1234 \
122
122
ANTHROPIC_AUTH_TOKEN=lmstudio \
123
123
CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1 \
124
-
claude "$@"
124
+
claude --model qwen/qwen3-coder-next "$@"
125
125
}
126
126
```
127
127
@@ -381,8 +381,8 @@ Local models move fast. When this recommendation is stale, check the [LM Studio
381
381
Download, load, and serve -- all from the CLI:
382
382
383
383
```bash
384
-
lms get lmstudio-community/Qwen3-Coder-Next-MLX-4bit -y
385
-
lms load lmstudio-community/Qwen3-Coder-Next-MLX-4bit --context-length 32768 --gpu max -y
384
+
lms get Qwen3-Coder-Next@MLX-4bit -y
385
+
lms load qwen/qwen3-coder-next --context-length 32768 --gpu max -y
386
386
lms server start
387
387
```
388
388
@@ -400,8 +400,13 @@ claude
400
400
401
401
Or use the `claude-local` shell function from [Shell Setup](#shell-setup) to avoid typing the env vars every time.
402
402
403
+
If `claude-local` fails with `The number of tokens to keep from the initial prompt is greater than the context length.` message, then try disabling auto-loaded tools (`--strict-mcp-config` first, then try also `--disable-slash-commands` and `--system-prompt "You are a helpful coding assistant."`).
404
+
405
+
If `claude-local` fails with `request.thinking.type: Invalid discriminator value. Expected 'enabled' | 'disabled'"` then add `--settings '{"alwaysThinkingEnabled": false}'` flag.
406
+
403
407
For the full list of environment variables (model overrides, subagent models, traffic controls, etc.), see the [model configuration docs](https://code.claude.com/docs/en/model-config).
404
408
409
+
405
410
### Personalization
406
411
407
412
You can customize the spinner verbs that appear while Claude is working. Ask Claude: "In my settings, make my spinner verbs Hackers themed" — or Doom, or Star Trek, or anything else.
0 commit comments