A different division of labour.
- DeepSeek reports 8B active parameters for prefill and 16B for decode.
- The decoder’s global KV is projected from final encoder states.
prompt → encoder → shared global KV → decoderDeepSeek’s V4.1 Flash combines a causal encoder–decoder with compressed sparse attention and Engram memory. Its design separates how context is built, retained and read during generation.
Build the prompt once. Share its global memory. Spend the next layer on the next decision.
A 20-layer causal encoder feeds a 20-layer decoder. Most prompt tokens take the encoder path; the final 128 prompt tokens are replayed to approximate the decoder’s local attention state.
prompt → encoder → shared global KV → decoderGrouped schematic of the causal encoder–decoder. Encoder states supply decoder global KV; local attention and Engram follow separate paths. The animation is explanatory; no model inference is executed.
Encoder: layers 1–20. Decoder: layers 21–40. Full, Reindex and Reuse refer to global attention; local SWA is also present.
Configuration, memory and computation—each with a specific role in the model.
prompt → encoder → shared global KV → decodershared KV → candidate pool → top 512 → attentiontoken → top-6 experts + shared / gated n-gram lookupimage → ViT → pixel unshuffle → projector → backboneDeveloper papers, released configurations and reference implementations. Reviewed 10 September 2026.
§§2.1–2.4, 3.2, 4.2.1 · pp.7–14, 19–22
Exact V4.1 release; linked configuration and reference code
CSA2 cache ownership, index reuse, Gate and Engram
September 10, 2026 · DeepSeek-V4.1-Flash
Only later decoder indexer scoring is bounded by the candidate cap; the complete model is not constant-cost with context.
SWA replay is approximate. Architecture figures are DeepSeek’s published specifications, not Perchy benchmarks.
Work across substantial documents and multi-step problems with inference capacity sized for the actual context.
Connect model reasoning to approved tools and carefully controlled production workflows.
Explore applications that combine language and visual information within the model’s supported input scope.
Perchy provides managed AI inference through authenticated APIs. Customers do not receive SSH, root, operating-system or bare-metal access. The service does not provide model-training or fine-tuning functionality. Server administration remains with Perchy.
The technical report’s backbone and Engram parameter figures are shown separately. Reported global KV storage is not total GPU memory: local windows, activations, weights, runtime buffers and concurrency add costs. API availability and the licensed serving configuration are agreed in your proposal.
Read the model developer’s documentationOne conversation.
A whole new trajectory.