July 9, 2026 · 8 min read · ← All posts

ThinkingCap Qwen 3.6 27B is a serious WebBrain planner candidate

BottleCap AI's ThinkingCap-Qwen3.6-27B is pitched as a minimally invasive finetune of Qwen 3.6 27B that keeps the base model's capability while using fewer thinking tokens. That is exactly the kind of claim worth testing against WebBrain's frozen browser-agent planner harness. We loaded a local INT4 AutoRound derivative behind vLLM as thinkingcap-27b and compared it with the saved Qwen 3.6 27B rows. The result: ThinkingCap ties the older Qwen 3.6 27B row on all-case Sonnet alignment, beats both saved Qwen 3.6 rows on strict exact first-call count, and runs close enough to the NVFP4 row to be taken seriously.

The claim

ThinkingCap-Qwen3.6-27B is a BottleCap AI finetune of Qwen/Qwen3.6-27B. The model card frames it as a way to preserve Qwen 3.6 27B capability while reducing thinking-token budget.

That claim is adjacent to WebBrain, but not identical. WebBrain's frozen planner benchmark does not ask the model to solve long reasoning problems. It asks one narrower production question: given a browser state, a user instruction, and a 41-tool browser-control schema, what is the first tool call?

One caveat up front: the endpoint we tested was not the official BF16 model or the official FP8 sibling. The local vLLM server advertised an INT4 AutoRound derivative:

{
  "id": "thinkingcap-27b",
  "root": "josefprusa/ThinkingCap-Qwen3.6-27B-int4-AutoRound-v1",
  "max_model_len": 65536
}

So read the planner-quality result as a useful ThinkingCap-family signal. Read the latency result as specific to this local INT4 AutoRound serving path, with the broader serving-stack caveat at the end.

What we ran

The local vLLM endpoint was:

http://localhost:8000/v1/chat/completions

We used the same frozen May 23, 2026 WebBrain baseline used by the recent planner posts: Claude Sonnet 4.6's system prompt and 41-tool schema, system hash 5c4fac1387025050.

node test/llm/run-llamacpp.mjs \
  --base http://localhost:8000 \
  --model thinkingcap-27b \
  --tag 2026-07-09-thinkingcap-27b-fast-localhost8000 \
  --concurrency 2 \
  --timeout 180000 \
  --no-save-request \
  --freeze test/llm/freeze/baseline-2026-05-23.json

This was a native OpenAI structured-tools run. No chat-template fallback was used, and request payloads were not saved.

Result files:

test/llm/results/2026-07-09-thinkingcap-27b-fast-localhost8000_chrome_thinkingcap-27b_frozen

Headline result

MetricThinkingCap 27B INT4 AutoRound
Completed cases100/100
Transport errors0
Parsed tool calls91/100
Valid frozen-schema tool names91/100
Strict exact first-call match19/100
Ideal tool-name match35/100
Sonnet match, all cases77.0%
Sonnet match, when Sonnet tooled76.1%
Average latency2.47s
Median latency2.25s
p95 latency3.94s
Slowest case6.47s
Total wall time123.8s at concurrency 2, after warm server

That changes the conclusion a lot.

The short version: this is a top-tier local planner row, but not a clean winner.

ThinkingCap ties old Qwen 3.6 27B on all-case Sonnet alignment and gains one strict exact first-call match. It also beats the Qwen 3.6 27B NVFP4 row on all-case Sonnet alignment and p95 latency. But it trails the Qwen rows on parsed tool calls, ideal-name matches, and tool-required Sonnet alignment.

Against Qwen 3.6 27B

There are two useful Qwen comparisons: the older saved Qwen 3.6 27B row and the newer local NVFP4 row.

ModelParsed callsExactIdeal nameSonnet allSonnet tooledMedianp95
Qwen 3.6 27B92/10018/10037/10077.0%77.2%10.2s15.0s
ThinkingCap 27B INT491/10019/10035/10077.0%76.1%2.25s3.94s
Qwen 3.6 27B NVFP496/10018/10038/10074.0%77.2%1.76s6.49s

Against the older Qwen 3.6 27B row, ThinkingCap is now a real candidate rather than a curiosity. It ties all-case Sonnet alignment, gains one strict exact first-call match, and is much faster in this local comparison. It still loses one parsed tool call, two ideal-name matches, and one Sonnet-tooled match.

Against the NVFP4 row, the tradeoff is sharper. ThinkingCap gains three all-case Sonnet points and one exact match, and its p95 latency is better. NVFP4 still has more parsed calls, more ideal-name matches, one more Sonnet-tooled match, and a faster median.

So the fair summary is:

QuestionWinner
Most parsed native tool callsQwen 3.6 27B NVFP4
Best ideal tool-name countQwen 3.6 27B NVFP4
Best strict exact countThinkingCap, by one call
Best all-case Sonnet alignmentQwen 3.6 27B and ThinkingCap tie
Best no-tool boundary matchThinkingCap
Best median latencyQwen 3.6 27B NVFP4
Best p95 latency among these threeThinkingCap

That is not a clean sweep. It is a serious local result.

The boundary behavior

Sonnet returned no tool on eight frozen cases. These are important because they test whether a browser agent knows when not to touch the browser yet: under-specified instructions, short knowledge answers, and cases where the right first move is not an action.

ThinkingCap matched seven of those eight Sonnet no-tool decisions in the full run.

ModelSonnet no-tool decisions matched
ThinkingCap 27B INT47/8
Qwen 3.6 27B6/8
Qwen 3.6 27B NVFP43/8

That is still the core reason ThinkingCap beats NVFP4 on all-case alignment despite losing on tool-required alignment.

The ambiguous band shows the same shape:

ModelAmbiguous / clarify Sonnet matches
ThinkingCap 27B INT43/8
Qwen 3.6 27B2/8
Qwen 3.6 27B NVFP40/8

This is the part of ThinkingCap I like. It is less eager to poke the page when the prompt is vague. For an autonomous browser agent, that matters. A planner that can decline to act is easier to wrap safely than one that treats every user sentence as a reason to click something.

There is still a protocol mismatch: ThinkingCap sometimes answered in prose instead of using the explicit clarify tool. That can be semantically fine in chat, but WebBrain's planner loop prefers explicit tool calls for terminal decisions. Still, the broad boundary instinct is better than NVFP4's.

Where it is strong

The run's first-call distribution is normal enough:

Tool or outputFirst calls
get_accessibility_tree39
navigate19
no tool call9
execute_js7
read_page6
new_tab3
download_social_media2
extract_data2
list_downloads2
screenshot2
clarify1
click_ax1
download_file1
get_interactive_elements1
get_selection1
press_keys1
scroll1
set_field1
verify_form1

The strongest category bands:

CategoryCasesSonnet-name matchesIdeal-name matches
Direct navigation10109
Search queries1096
Forms / interactive871
Page reading / summarize865
Email650
Downloads653
Tab management441
UI mutations440
Browser internals543
Knowledge questions540
Translation / accessibility331
Multi-page / listing330

Direct navigation is perfect, and search improved versus the first run. The exact score is also respectable: 19/100 ties Gemma 4 31B QAT and Qwen 3.7 Plus, and beats both saved Qwen 3.6 27B rows by one.

The other notable win is tail latency. NVFP4 still has the faster median, but this ThinkingCap serve profile had a better p95 than NVFP4 in the saved run: 3.94s versus 6.49s.

Where it loses points

The weak spots are still tool-required routing and ideal-name accuracy.

CategoryCasesThinkingCap Sonnet matchesQwen 3.6 27B Sonnet matchesPattern
GitHub flows624Often inspected or clicked instead of matching Sonnet's navigation/fetch choice.
Destructive / refusal-worthy622No improvement over Qwen on the high-stakes band.
Shopping434More generic inspection starts.
Scrolling / inspection434One mismatch despite a perfect ideal-name slice.
Ambiguous / clarify832Better boundary instinct, but still not consistently through the explicit clarify tool.

The GitHub slice is the clearest quality miss. ThinkingCap matched only 2/6 Sonnet tool names there. For WebBrain, GitHub flows matter because they exercise site guidance and adapter-style shortcuts. A model that over-inspects or takes a generic click path can still be useful, but it is less planner-like.

Ideal-name score is the other drag. ThinkingCap's 35/100 is solid, but it trails both Qwen 3.6 27B rows. That means the model often makes a Sonnet-like first move without choosing the planner's preferred tool name.

Latency

In this run, ThinkingCap was not the slow option. NVFP4 still has the faster median, but ThinkingCap's tail was tighter in the saved frozen comparison:

ModelAverageMedianp95Slowest
Qwen 3.6 27B NVFP42.19s1.76s6.49s8.66s
ThinkingCap 27B INT42.47s2.25s3.94s6.47s
Qwen 3.6 27B10.24s10.18s15.00s15.97s

That makes the speed read fairly simple. ThinkingCap is much faster than the older saved Qwen 3.6 27B row in this local comparison. It is not faster than Qwen 3.6 27B NVFP4 on median latency, but it is better on p95 here.

Token-efficiency claim, in this harness

The public ThinkingCap claim is about thinking-token reduction. WebBrain's first-tool harness is a tiny-output workload, so it is not a clean test of that claim. Most successful responses are just one structured tool call.

Still, the vLLM usage counters show a small completion-token reduction:

ModelTotal completion tokensAverage per case
ThinkingCap 27B INT47,34873.5
Qwen 3.6 27B7,72077.2
Qwen 3.6 27B NVFP48,46084.6

So yes, this run produced fewer completion tokens than the saved Qwen rows. The reduction is modest in this workload, but at least it points in the same direction as the model-card claim.

Updated context

Rows are ranked by all-case Sonnet match, then Sonnet-tooled match.

#ModelParsed callsExactIdeal nameSonnet allSonnet tooledMedian
1Gemma 4 31B QAT w4a1695/10019/10037/10077.0%78.3%0.55s
2Qwen 3.6 27B92/10018/10037/10077.0%77.2%10.18s
3MiniMax M2.788/10023/10036/10077.0%76.1%3.05s
4ThinkingCap 27B INT491/10019/10035/10077.0%76.1%2.25s
5Qwen 3.7 Plus95/10019/10041/10075.0%77.2%3.74s
6Agents-A1 AWQ INT488/10015/10033/10075.0%75.0%1.66s
7MiniMax M385/10017/10032/10075.0%73.9%3.06s
8Qwen 3.6 27B NVFP496/10018/10038/10074.0%77.2%1.76s
9Tencent Hy3 free95/10020/10038/10073.0%75.0%3.68s
10WebBrain Cloud 1.090/10016/10035/10073.0%72.8%8.77s
11Ornith-1.0-35B NVFP488/10021/10036/10071.0%70.7%2.38s
12Qwen 3.6 35B-A3B90/10018/10038/10070.0%70.7%10.29s

That table is why I would keep ThinkingCap in the serious-candidate bucket. It is tied for the headline top score, has a practical local latency profile, and shows better boundary behavior than the NVFP4 row.

But the ranking hides the tradeoff. ThinkingCap's all-case score is helped by no-tool boundary behavior. On tool-required prompts, it trails Qwen 3.6 27B, Qwen 3.6 27B NVFP4, Gemma 4 31B, and Qwen 3.7 Plus. It is a candidate, not an automatic replacement.

Bottom line

ThinkingCap-Qwen3.6-27B is a real WebBrain planner candidate.

It ties the older Qwen 3.6 27B row on all-case Sonnet alignment, beats it on strict exact count, and runs about 4.5x faster on median latency. Compared with Qwen 3.6 27B NVFP4, it is better on all-case Sonnet alignment and p95 latency, but worse on median latency, parsed tool calls, and ideal-name matches.

My read: I would not make it the default from this frozen run alone, because the tool-required and ideal-name metrics still favor the Qwen baselines. But it absolutely belongs in the next round. The useful follow-up is a live-schema run and a focused look at GitHub, refusal-worthy, and clarify behavior.

A serving-stack note

One lesson from this run is methodological. We initially got a much worse latency result from the same local ThinkingCap artifact because the vLLM serve script was still carrying debug and conservative settings: CUDA launch blocking, CUDA device-side assertions, no prefix caching, no speculative decoding, and CUDA graph capture disabled. With the production-shaped profile, the same frozen benchmark moved from a 33.7s median to a 2.25s median.

That does not just matter for this one post. Some earlier benchmark rows may also be partially shaped by their serving stack rather than only by model quality. The saved table mixes OpenRouter-hosted models, local vLLM endpoints, llama.cpp, LM Studio, and Ollama. That was the practical way to build the first comparison set, but it is not perfectly apples-to-apples.

Going forward, the benchmark should become more standardized: clearer serving profiles, more consistent concurrency, warmer local servers, and explicit notes when a row comes from a managed API versus a local runtime. The model-ranking signal is still useful, but the latency columns deserve that extra discipline.

Tags: #ThinkingCap #BottleCapAI #Qwen36 #Qwen36_27B #vLLM #ToolCalling #BrowserAgent #WebBrain

Written by Emre Sokullu. WebBrain is MIT-licensed and open on GitHub.