qwen3.6-27b
Qwen team's flagship dense 27 B (April 2026) — Gated DeltaNet hybrid with Gated Attention every 4 blocks, native 262 K ctx (1 M via YaRN). Marketed as approaching Claude Opus 4.5 on agentic coding while running on a single consumer-class node. Official Qwen FP8 build with block-128 quant; same `qwen3_coder` tool-call parser our other Qwen3.x runs use.
Qwen/Qwen3.6-27B-FP8 FP8 28 GB 27B active 27B total parser · qwen3_coder
Transcripts
simple
Reply with exactly the five words: hello from hermes on spark.
hello from hermes on spark
math
What is 127 times 49? Answer with just the number.
6223
reasoning
A farmer has 17 sheep. All but 9 die. How many remain? Answer with one short sentence.
9 sheep remain.
tool_ls
Use the shell tool to list files in /tmp. Tell me only how many there are.
There are 3665 files in /tmp.
code
Write a one-line Python expression that returns the sum of squares from 1 to 10.
(sum(i*i for i in range(1, 11)))
That evaluates to 385.