Qwen3.6-27B
by Qwen
Dense 27B multimodal model with flagship-level coding and vision
Qwen/Qwen3.6-27Bmixpeek://image_extractor@v1/qwen36_27b_v1Overview
Qwen3.6-27B is Alibaba's dense 27-billion-parameter multimodal model that supports vision-language thinking and non-thinking modes in a single unified checkpoint. Despite being a dense model, it surpasses the previous 397B MoE flagship (Qwen3.5-397B-A17B) on every major coding benchmark and delivers strong vision understanding.
On Mixpeek, Qwen3.6-27B is the most powerful open-source captioning and visual reasoning model available, ideal for complex scene understanding, code extraction from screenshots, and detailed document analysis where accuracy matters more than throughput.
Architecture
64-layer dense language model using a hybrid layout of 16 repeats of (3x Gated DeltaNet + FFN, 1x Gated Attention + FFN) with hidden dim 5120 and FFN intermediate 17408. Supports 262K native context extensible to ~1M via YaRN. Trained with multi-token prediction.
Mixpeek SDK Integration
// No extractor parameter takes a Hugging Face model id (checked against
// GET /v1/discovery/extractors, which returns 13), so Qwen3.6-27B runs
// on your side and the output is upserted through POST
// /v1/namespaces/{namespace_id}/documents/upsert. On Enterprise the other
// path is to upload the weights instead: POST /v1/namespaces/{id}/models
// accepts the huggingface format and a custom plugin loads them.
const res = await fetch(
"https://api.mixpeek.com/v1/namespaces/ns_your_namespace/documents/upsert",
{
method: "POST",
headers: {
Authorization: "Bearer API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({
collection_id: "col_your_collection",
documents: [
{
document_id: "asset-00412",
// The model produces text, so it lands in payload. Give the
// collection a text vector index and embed that text to make it
// searchable rather than only filterable.
payload: { extracted_text: modelOutput, source_key: "archive/2026/asset-00412" },
vectors: { "multimodal-embedding": embeddingOfModelOutput },
},
],
}),
},
);
// Managed alternative, if this exact model is not the requirement:
// universal_extractor@v1 runs google/gemini-embedding-2
// (3072-d) over a bucket, with no inference of your own.Capabilities
- Vision-language thinking and non-thinking modes in one checkpoint
- 262K native context window (extensible to ~1M tokens)
- Flagship-level agentic coding (SWE-bench Verified: 77.2)
- Strong visual understanding (MMMU: 82.9, VideoMME: 87.7)
- Fits on a single consumer GPU with Q4_K_M quantization (16.8 GB)
Use Cases on Mixpeek
Benchmarks
| Dataset | Metric | Score | Source |
|---|---|---|---|
| MMMU | Accuracy | 82.9% | Qwen3.6-27B blog post, April 2026 |
| SWE-bench Verified | Resolve Rate | 77.2% | Qwen3.6-27B blog post, April 2026 |
| GPQA Diamond | Accuracy | 87.8% | Qwen3.6-27B blog post, April 2026 |
Performance
Common Pipeline Companions
Explore on Mixpeek
Compare alternatives in this category
Hand-picked tools & platforms compared
Deep-dive technical guide
See how Mixpeek runs models as extractors
Store & search embeddings at scale
Usage-based pricing for pipelines
Compare models, APIs & infrastructure
Specification
Research Paper
Qwen3.6-27B: Flagship-Level Coding in a 27B Dense Model
arxiv.orgBuild a pipeline with Qwen3.6-27B
Add this model to a processing pipeline alongside other extractors. Combine with retrieval stages for end-to-end search.
Run it on your own data, free