cd /news/large-language-models/qwen-3-8-27b-is-great-but-turn-off-i… · home topics large-language-models article
[ARTICLE · art-99549] src=byteiota.com ↗ pub= topic=large-language-models verified=true sentiment=· neutral

Qwen 3.8 27B Is Great — But Turn Off Its Brain First

Alibaba's Qwen team released Qwen 3.8 27B on August 14, a 17GB model that scores 61.7 on SWE-bench Pro, outperforming Claude Opus 4.6 Max's 53.4, and runs offline on consumer hardware. However, its default `reasoning_effort` setting of `xhigh` causes excessive deliberation, as demonstrated by Simon Willison's MacBook Pro taking 21 minutes to generate 22,276 reasoning tokens for a simple SVG request; setting the parameter to `low` or `none` reduces the time to 137 seconds, a 9x speedup. The model is licensed under Apache 2.0 and hit #1 on Hacker News with 893 points, but community analysis suggests a possible scale misalignment in the `ssm_conv1d` layers that may require a retrained release from Alibaba.

read4 min views11 publishedAug 17, 2026
Qwen 3.8 27B Is Great — But Turn Off Its Brain First
Image: Byteiota (auto-discovered)

Alibaba’s Qwen team released Qwen 3.8 27B on August 14 — a 17GB model that posts near Claude Opus 4.6 Max scores on software engineering benchmarks and runs fully offline on consumer hardware. Simon Willison ran it on his MacBook Pro and asked it to draw a pelican on a bicycle. The model spent 21 minutes generating 22,276 reasoning tokens before producing the SVG. The same prompt, with one parameter changed, completed in 137 seconds. The model is not broken — but it ships configured like it is.

Why Developers Are Paying Attention #

Qwen 3.8 27B is a legitimate milestone for local AI. At 27.78 billion parameters, it scores 61.7 on SWE-bench Pro — higher than Claude Opus 4.6 Max’s 53.4, according to Alibaba’s reported benchmarks. It accepts text, images, and video natively, ships with a 262,144-token context window, and is licensed under Apache 2.0, meaning free commercial use without restrictions or per-token fees. The quantized GGUF version fits in 17GB and runs on a 24GB GPU or a well-specced Mac with 32–48GB of unified memory. The day Alibaba pushed the weights, the model hit #1 on Hacker News with 893 points. For the local AI crowd, this was a big deal.

The Problem: It Defaults to Thinking Too Hard #

Qwen 3.8 ships with reasoning_effort

set to xhigh

by default. That setting is designed for “complex tasks demanding thorough analysis” — but the model applies it universally, including for trivial requests. Ask it to draw a simple circle in SVG and it will deliberate at length before producing an over-engineered animated result you didn’t want. Ask it to draw a pelican on a bicycle and Willison’s MacBook Pro spent 21 minutes producing 22,276 reasoning tokens to generate 3,223 output tokens. The output was fine. The wait was not.

Hacker News developers confirmed the same pattern. One commenter reported 17,576 reasoning tokens for a task where a competing model used 1,021. The community consensus: the model is technically excellent, but it needs configuration before it is practically useful.

The Fix: One Parameter #

Set reasoning_effort

to low

, medium

, or none

. That is the whole fix. With reasoning disabled, Willison’s pelican prompt went from 21 minutes to 137 seconds — about 9x faster. The model produced 3,715 tokens and the result was the same quality.

response = client.chat.completions.create(
    model="qwen3.8-27b",
    messages=[{"role": "user", "content": "your prompt here"}],
    extra_body={"reasoning_effort": "low"}  # none | low | medium | xhigh
)

If you are running the model via llama-server, pass --reasoning-effort low

at startup. Unsloth Desktop has a thinking toggle in the UI. The default xhigh

reasoning mode should be reserved for genuinely hard research and analysis tasks where you can afford the wait. For coding, writing, and most day-to-day use, start at none

and escalate from there.

There May Be More to It Than Config #

A community researcher on HuggingFace went deeper. Analysis of the model weights identified possible scale misalignment in the ssm_conv1d

layers — specifically blocks 52–62 of the DeltaNet attention mechanism. The hypothesis: distorted temporal signals cause the model’s reasoning to not know when to stop, turning a configuration problem into a training artifact. A partial community fix already exists at redashes/Qwen3.8-27B-BF16-SSMFIX on HuggingFace. This is not confirmed by Alibaba, and the reasoning_effort

parameter remains the practical solution for most developers. But it suggests that a full fix may require Qwen to retrain and push corrected weights — possibly in a future release.

Local AI vs. Cloud: The Honest Math #

With reasoning tuned down, Qwen 3.8 27B runs at 15–30 tokens per second on an M-series Mac. GPT-5.6 Luna through the API runs at around 184 tokens per second. That gap is not going away. Cloud APIs are faster and getting cheaper. For latency-sensitive applications, the comparison is not flattering.

But for the right workloads, the local value proposition holds. Zero per-token cost at scale. Complete data privacy — nothing leaves your machine. Offline operation for air-gapped or restricted environments. Apache 2.0 permanence, with no risk of pricing changes or model deprecation affecting your deployment. For batch processing jobs, coding agents that run overnight, or any application where a few extra seconds per request is acceptable, a properly configured Qwen 3.8 27B is genuinely competitive with hosted alternatives — and costs nothing to run after the hardware investment.

The model is good. The defaults are not. One parameter change separates a frustrating experience from a capable local AI that punches well above its weight class. Read Willison’s full analysis and check the official model page on HuggingFace before you write it off based on first impressions.

── more in #large-language-models 4 stories · sorted by recency
simonwillison.net · · #large-language-models
CORS Chat
── more on @alibaba 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/qwen-3-8-27b-is-grea…] indexed:0 read:4min 2026-08-17 ·