Last updated: 2026-09-19

Every Major Model & Agent-Harness Release, August–September 2026

In five weeks, every major lab shipped a new model and three harnesses changed what they read or how they load. This page gathers all of it in one place: the API ID to put in your config, the price per million tokens, the context window, and the one thing that changes for an agent. Every figure is checked against the vendor's own pricing or docs page, not a summary. Where we have a deeper page, video, or changelog entry, it's linked.

Models

ModelReleasedAPI IDIn / Out per MTokContextOur coverage
Claude Fable 5.1 (Anthropic)2026-09-01claude-fable-5-1$10 / $50 (cache hit $0.25)1M · 128K outbenchmarks · prompting
Claude Mythos 5.1 (Anthropic)2026-09-01claude-mythos-5-1$10 / $501Mchangelog (the $50/$250 release-note figure is wrong)
GPT-6 Astra (OpenAI)2026-09-03gpt-6-astra$10 / $50 (cached $1)1.05Mvs Fable 5.1 · automations
Gemini 3.8 Flash (Google)2026-09-02see Google's model list$0.75 / $3.751Mbelow · calculator
Grok 4.6 (xAI)2026-08-12see docs.x.ai model list$2 / $6 (<200K prompt); $4 / $12 at 200K+500Kbelow · Grok Bot pricing
Muse Spark 1.3 (Meta)2026-09-02muse-spark-1.3$1.25 / $4.25 (cached $0.15)1Mbelow
DeepSeek V4.1 Flash2026-09-10deepseek-flash$0.30 / $1.20 peak; $0.15 / $0.60 off-peak1Mbelow · vs Astra, measured
GLM-5.3-Flash / FlashX (Z.ai)2026-08-26 / 2026-09-18glm-5.3-flash, glm-5.3-flashxnot listed on the docs page1M · 128K outbelow
Qwen 3.8 (Alibaba)Max 2026-08-03; open weights 2026-08-12/14varies by hostvaries by host262K native, 1M with YaRNcomparison · in Hermes
Kimi K3 (Moonshot)July 2026varies by host$3 / $15 (via API hosts)Hermes setup · open weights

Prices are standard (non-batch) API rates. Our cost calculator carries most of these, so you can model them against your own cache-hit rate, which is where most of the real difference between them shows up.

Gemini 3.8 Flash — the workhorse benchmark results kept pointing to

Released 2026-09-02 at $0.75 / $3.75 per MTok with a 1M context. This model doesn't have a video page of its own yet, but it keeps showing up in other people's tests. In IndyDevDan's five-benchmark ranking it placed second on Deep SWE (long-horizon software engineering), behind only GPT-6 Astra, and was a strong runner-up on the Omniscience hallucination benchmark. The trade-off is time. It takes more steps and more tokens to get there. What to do: it's the obvious candidate for the "workhorse" slot in a model stack. Route long, low-stakes tasks to it, and keep a frontier model for work where a wrong answer is expensive.

Grok 4.6 — and the pricing cliff at 200K

xAI's flagship since 2026-08-12, positioned for long-running agents, with a 500K context. The pricing detail to plan around: below 200K tokens a prompt costs $2 / $6 (cached input $0.50), but once a prompt reaches 200K, the whole request bills at $4 / $12, not just the tokens over the line. An agent that lets its context drift past 200K doubles its cost on every turn after that. On Automation Bench, which penalises guardrail violations, Grok 4.6 ranked near the top. It also runs underneath xAI's hosted agent product. See our new Grok Bot section.

Muse Spark 1.3 — Meta's agentic API model, with a cheap tier that trains on your data

Released 2026-09-02 on Meta's API (and in Muse Code) as muse-spark-1.3: $1.25 input / $0.15 cached / $4.25 output per MTok, 1M context. Meta says it uses about 20% fewer tool calls and 25% fewer tokens than 1.2 on its internal comparisons, and is tuned for longer multi-step work. There is also a muse-spark-1.3-contributor variant at $0.10 / $0.002 / $0.20, which Meta labels "used to improve our products". What to do: treat the contributor tier as a public channel. It's fine for open-source code or synthetic tests, but never for client data, credentials, or anything under NDA.

DeepSeek V4.1 Flash — the old model names now route to it

Released 2026-09-10 as deepseek-flash: a 552B-parameter MoE with native vision and a 1M context. Peak: $0.30 / $1.20. Off-peak: exactly half. Cache hits: $0.006 peak. Peak hours are 01:00–04:00 and 06:00–10:00 UTC, Monday to Friday. The migration detail: V4 Flash and V4 Flash Vision Exp are retired. The names deepseek-v4-flash and deepseek-v4-flash-vision-exp still work, but they route to and bill as V4.1 Flash. If you pinned the old name for reproducibility, you're already on a different model. Measured on real builds, it cost 4–6× less than Astra but took 3–5× longer.

GLM-5.3-Flash and FlashX — a fast open-weights option

glm-5.3-flash (launched 2026-08-26, MIT licence, weights on Hugging Face) is the first natively multimodal GLM-5 model: 320B total parameters, 18B active, 1M context, 128K max output. glm-5.3-flashx followed on 2026-09-18 at up to 200 tokens/second. Z.ai's docs say FlashX isn't on the GLM Coding Plan yet, while Flash is. In the benchmark roundups it's a strong budget option for coding, but weak on hallucination, so pair it with verification, not trust. Z.ai's docs page doesn't list per-token prices, so check your provider before routing volume to it.

Harnesses: what changed in how agents load and run

HarnessChangeWhat to do
Claude Code v2.1.277Reads AGENTS.md when a project has no CLAUDE.md. Removes the TaskOutput toolPut shared rules in AGENTS.md. Remove TaskOutput from permission rules, hooks and skills. Changelog
OpenAI Agents API (beta, 2026-09-10)Hosted Codex harness: OpenAI manages sessions, orchestration, compaction and recoveryBuild versus buy the agent loop. Video
Claude API (2026-09-14)On-demand compaction (compact-2026-09-04 beta) returns a signed compaction blockCompact at task boundaries in your own loop. Changelog
Grok Bot (beta, 2026-08-11)Hosted always-on teammates on a shared cloud computerNew section
OpenCode 2.0Breaking plugin API. V1 plugins fail to load with PluginModule.LoadError: Plugin must export a default definition with an id and an effect or setup functionPlugins must now default-export { id, setup } (or effect), where setup receives { client, project, directory, worktree, … } and may return a cleanup function. Check each plugin for a V2 release before upgrading
Pi (Earendil)A minimal, MIT-licensed terminal harness. The core is read, write, edit and bash, and everything else is an extensionnpm install --global @earendil-works/pi-coding-agent. Benchmark video
Kilo Code 7.6–7.7Kilo Swarm shared board, built-in browser automation, KiloClaw client removedWalkthrough · changelog
Harness ArenaBlind comparison of harnesses on the same task and modelUpload your own tasks. How to use it
The pattern: price parity at the top, a price war below it

The three frontier flagships (Fable 5.1, Mythos 5.1, GPT-6 Astra) all list at $10 / $50. Below them, five vendors now offer 1M-context models between $0.30 and $1.25 input. At the top, cost now differs mainly through cache rates (Fable's $0.25 against Astra's $1) and token efficiency, not list price. Everywhere below, the useful question is no longer "which model is cheapest". It's "which one is good enough for this slot in my stack", and matching benchmarks to the job answers that better than any single leaderboard.

Sources, checked 2026-09-19: Anthropic platform release notes; OpenAI API changelog; DeepSeek models & pricing; Z.ai GLM-5.3-Flash docs; Meta Muse Spark for developers; xAI models & pricing; OpenCode V2 plugin docs; Pi repository. Qwen 3.8 dates and specs are from Alibaba's announcements as reported by The Decoder and SCMP. Gemini 3.8 Flash rates are from our calculator's Google group, last verified 2026-09-06.