Overview
Step-3.7-Flash is StepFun's open-weight vision-language flagship, released on May 29, 2026. StepFun's model card describes it as "a 198B-parameter sparse Mixture-of-Experts (MoE) vision-language model that combines a 196B-parameter language backbone with a 1.8B-parameter vision encoder for native image understanding." It "activates approximately 11B parameters per token and delivers a throughput of up to 400 tokens per second," supports "a 256k context window," and "offers three selectable reasoning levels (low, medium, and high) so developers can easily balance speed, cost, and cognitive depth."
StepFun (阶跃星辰; legally 上海阶跃星辰智能科技有限公司) was founded on April 6, 2023 by Jiang Daxin, Zhu Yibo and Jiao Binxing. The positioning of this release is stated plainly on its model page — "The new frontier is agent efficiency" — and in its GitHub repository description: "A high-efficiency Flash model for real-world agents." StepFun says it was built "for developers who need to scale agentic workflows that combine perception, search, and reasoning."
That framing is worth taking literally, because the independent numbers reward throughput rather than intelligence. Artificial Analysis clocks Step-3.7-Flash at 406.7 output tokens per second — first of 93 models in its comparison set, exceeding the vendor's "up to 400 tokens per second" claim. On the same site it scores 30 on Intelligence Index v4.1, ranking #32 of 93 open-weights models. Against the current Chinese flagship cohort that is a wide gap: Artificial Analysis's leaderboard places MiniMax-M3 at 44, Kimi K2.6 at 44, MiMo-V2.5-Pro at 42, Qwen3.7-Max at 46, and GLM-5.2 at 51. The honest summary is volume without prestige — a model chosen for throughput and unit economics, not for topping leaderboards.
A note on naming
Three claims circulating about this model are false, and one is a near-miss worth untangling.
- "Step-R" does not exist. No such model appears in StepFun's Hugging Face organisation or model listings. The confusion likely stems from Step-R1-V-Mini, a genuine StepFun multimodal reasoning model from April 2025 — unrelated to the 3.7 generation.
- "Step-4" does not exist. StepFun has never released a model under that name. The lineage runs Step-1 → Step-2 → Step 3 (July 2025) → Step 3.5 Flash (early 2026) → Step-3.7-Flash.
- There is no larger, non-Flash Step-3.7.
stepfun-ai/Step-3.7does not resolve as a public repository. Flash is the release. The only siblings are quantisations of the same checkpoint:-FP8,-NVFP4, and-GGUF.
Capabilities
- Native visual understanding: A 1.8B perception-encoder ViT (728px images, 14px patches, 47 layers) is fused with the language backbone. StepFun claims the model "accurately processes dense visual interfaces, such as UI wireframes, application GUIs, and data charts, to map them into structured code."
- Three-tier reasoning with mandatory chain-of-thought:
low,medium, andhigh. OpenRouter's API flags reasoning asmandatory: truewith a default effort ofmedium— this model always thinks before answering. - Tool orchestration: StepFun reports 67.1 on ClawEval-1.1, claiming it "significantly outperforms the next closest competitor at 59.8," and describes "high resistance to adversarial traps and strict adherence to system policies during multi-turn orchestration."
- Search-augmented perception: "When it encounters an incomplete visual asset, it can independently identify missing data and execute lookups to verify context before returning a factually verified conclusion."
- Throughput as a design goal: Up to 400 tokens/second, independently corroborated by Artificial Analysis at 406.7 tok/s.
- Speculative decoding built in: The config declares three Multi-Token Prediction layers, and StepFun's vLLM recipe enables them with
--speculative_config '{"method": "mtp", "num_speculative_tokens": 3}'.
Technical Specifications
- Hugging Face repository:
stepfun-ai/Step-3.7-Flash - Total parameters (vendor headline): 198B — 196B language backbone + 1.8B ViT
- Total parameters (safetensors index): 201,365,316,160
- Active parameters: ~11B per token
- Architecture: Mixture-of-Experts transformer, 288 experts, top-8 routing, sigmoid router
- Layers: 45, of which layers 3–44 are MoE; hidden size 4096; GQA attention (64 heads, 8 groups); 512-token sliding window
- MTP layers: 3 (
num_nextn_predict_layers) - Vision encoder:
perception_encoder, 728×728 input, patch size 14, width 1536, 47 layers - Context window: 256K tokens (
max_position_embeddings: 262144), reached by llama3 RoPE scaling at factor 2.0 from a native 131,072 - Modalities: OpenRouter lists
text+image+video->text; the model card itself describes only image understanding - License: Apache 2.0
model_type:step3p7; the text backbone still reportsstep3p5, confirming it is the Step-3.5-Flash lineage
The 198B headline and the 201.4B safetensors count do not agree. The model card offers no reconciliation, and this page does not guess at one. StepFun publishes no knowledge cutoff and no training-token count, so this page does not state either.
Use Cases
- High-volume agent fleets: The stated design target — "operating concurrent coding agents in high-throughput pipelines," where per-token cost and tokens/second dominate the economics.
- Document and report parsing: StepFun cites "parsing massive financial reports in one pass," which the 256K context window supports.
- Screenshot-to-code and GUI automation: The vision encoder is aimed squarely at wireframes, GUIs and charts.
- Multi-step search loops: "running multi-step search loops with cross-source verification," per the model card.
- Latency-sensitive interactive products: 406.7 tok/s is the fastest measured in Artificial Analysis's 93-model cohort;
reasoning_effort: lowtrims the mandatory thinking budget. - Cost-constrained self-hosting: 11B active parameters run on a NVIDIA DGX Station, an AMD Ryzen AI Max+ 395 system, or a Mac Studio / MacBook Pro with ≥128GB unified memory, per StepFun's deployment notes.
Performance / Benchmarks
Vendor-reported. Step-3.7-Flash's own scores are quoted from the text of StepFun's Hugging Face model card; the competitor column is read off the benchmark table on StepFun's model page, whose comparison set includes DeepSeek V4 Flash, Gemini 3.5 Flash, GPT-5.5, Claude Opus 4.7, Kimi K2.6 and GLM-5.1.
| Benchmark | Step-3.7-Flash | StepFun's cited leader |
|---|---|---|
| ClawEval-1.1 | 67.1 | next closest 59.8 |
| SimpleVQA (Search) | 79.2 | GPT-5.5: 79.1 |
| V* (with Python) | 95.3 | Kimi K2.6: 96.9 |
| SWE-Bench Pro | 56.3 | Claude Opus 4.7: 64.3 |
| Terminal-Bench 2.1 | 59.5 | GPT-5.5: 82.7 |
| Toolathlon | 49.5 | Claude Opus 4.7: 65.4 |
| HLE w. Tool | 48.1 | not stated |
| GDPVal-AA | 45.8 | not stated |
StepFun concedes the weak spots itself: "evaluations like Terminal-Bench 2.1 (59.5) and GDPVal-AA (45.8) show clear areas for future optimization compared to the absolute peak of the cohort."
Third-party placements
Artificial Analysis (Intelligence Index v4.1, retrieved 2026-07-08): Intelligence 30, output speed 406.7 tok/s, #1 of 93. Intelligence rank #32 of 93 open-weights models, which Artificial Analysis describes as "above average among other open weight models of similar size" against a median of 25. OpenRouter's model API mirrors the same Artificial Analysis figures at finer precision — intelligence 29.7, coding index 37.3, agentic index 21.5 — the latter two are not shown on Artificial Analysis's own model page.
Design Arena (per-category ranks, as embedded in OpenRouter's model API): ASCII art #20 (Elo 1210), dataviz #43 (1212), website #44 (1225), code categories #45 (1217), UI component #45 (1212), game dev #46 (1205), 3D #48 (1197), SVG #50 (1125).
arena.ai: not present. Its leaderboard changelog logs step-3.5-flash being "added to the Text leaderboard" on February 10, 2026, but carries no entry for Step-3.7-Flash.
Note that Artificial Analysis and arena.ai are different organisations with different scales; their numbers are not cross-comparable.
Limitations
- Intelligence is the trade: 30 on Intelligence Index v4.1 sits far below every current Chinese open-weight flagship — GLM-5.2 (51), Qwen3.7-Max (46), MiniMax-M3 and Kimi K2.6 (44), MiMo-V2.5-Pro (42). Buying this model for reasoning quality is a mistake.
- Verbose, which erodes the price advantage: Artificial Analysis measured 260M output tokens across its evaluation suite versus a 92M median for comparable models. At $1.15 per million output tokens, roughly 2.8× the median verbosity substantially narrows the apparent cost gap.
- Reasoning cannot be switched off: OpenRouter reports
reasoning.mandatory: true. There is nono_thinkmode, so even trivial turns pay a thinking-token toll. - Benchmarks are vendor-selected: The table above is StepFun's, run against StepFun's chosen competitor set. Independent replication is thin. Treat the ClawEval-1.1 and SimpleVQA leads as upper bounds.
- Parameter count is internally inconsistent: 198B claimed, 201.4B in the safetensors index, unreconciled.
- Two incompatible API regions: Keys issued on
platform.stepfun.ai(global) do not work againstapi.stepfun.com(China), and vice versa — StepFun warns requests "will be rejected as unauthorized." - Little arena presence: Absent from arena.ai's leaderboard, and seven of its eight Design Arena category ranks sit in the 40s–50s (ASCII art, at #20, is the lone outlier). There is no large-scale human-preference signal for this model.
- No published knowledge cutoff: Ground time-sensitive queries with retrieval or tool use.
Pricing & Access
Self-hosting is free. The weights are Apache 2.0 and published at stepfun-ai/Step-3.7-Flash, with FP8, NVFP4 and GGUF quantisations in the same organisation.
Hosted access. StepFun's model card publishes a rate card directly, in dollars per million tokens, and OpenRouter's API reports identical figures:
| Token type | Price per 1M tokens |
|---|---|
| Input (cache miss) | $0.20 |
| Input (cache hit) | $0.04 |
| Output | $1.15 |
Available on the StepFun Open Platform — platform.stepfun.ai (global) and platform.stepfun.com (China) — plus OpenRouter and NVIDIA NIM. StepFun states it "is also partnering with DeepInfra, Fireworks AI, and Modal to expand availability soon"; the model card still described those three as forthcoming as of July 8, 2026.
Serving: vLLM (vllm/vllm-openai:stepfun37), SGLang (lmsysorg/sglang:dev-step-3.7-flash), Hugging Face Transformers, and llama.cpp. The reasoning and tool-call parsers are both named step3p5.
Adoption signal: 146,515 downloads in the trailing 30 days and 408 likes on the base repository, with a further 157,601 on the NVFP4 quantisation — which, unusually, out-downloads the BF16 original. Across all 51 repositories in the stepfun-ai organisation, downloads total 1,484,107 for the period; the single most-downloaded repo is not Step-3.7-Flash but stepfun-ai/Step3-VL-10B at 325,897.
Ecosystem & Tools
- stepfun-ai/Step-3.7-Flash on Hugging Face — Apache 2.0 weights, benchmark table, deployment recipes
- Step-3.7-Flash on GitHub — "A high-efficiency Flash model for real-world agents"
- StepFun Open Platform — hosted API, global region
- Step-3.7-Flash on OpenRouter — third-party hosted access
- StepAudio 2.5 Realtime — StepFun's end-to-end speech model (May 2026), "an end-to-end real-time speech large language model" with "fully customizable persona capabilities"; technical report. API-only — no open weights published
- ACE-Step 1.5 — music generation co-developed by ACE Studio and StepFun; the Hugging Face repo
ACE-Step/Ace-Step1.5carries an MIT license tag (not Apache 2.0), was created January 23, 2026, and has 45,522 downloads / 791 likes stepfun-ai/Step-Audio-EditXand the Step-Audio-R1 line — speech editing and audio reasoning models, evidence of an unusually broad multimodal portfolio for a company of StepFun's size
Community & Resources
- Step 3.7 Flash model page — StepFun's official announcement, dated May 29, 2026
- Artificial Analysis: Step 3.7 Flash — Intelligence Index v4.1, speed and price measurements
- arena.ai leaderboard changelog — records Step 3 and step-3.5-flash additions; no Step-3.7-Flash entry
- StepFun on Hugging Face — 51 repositories spanning text, vision, audio, image and video
- StepFun — company site
- Compare with MiniMax-M3, MiMo-V2.5-Pro, GLM-5.2, Kimi K2.6, and Tencent Hy3