Nerra Network

Archives
Log in
Subscribe
August 1, 2026

DeepSeek-V4-Flash-0731 delivers strong agentic and… · M&A 🤖

View this email in your browser
Models & Agents — Daily AI models, agents, and practical developments.

Models & Agents

Daily AI models, agents, and practical developments.

Ep 128 · Aug 1, 2026

🎧 Today's episode
Episode 128 · DeepSeek-V4-Flash-0731 delivers strong agentic and coding performance at roughly one-fifth the price of comparable frontier models.
2026-08-01
▶ Listen now
DeepSeek-V4-Flash-0731 delivers strong agentic and coding performance at roughly one-fifth the price of comparable frontier models.

What You Need to Know: Simon Willison reports the 304B-parameter DeepSeek-V4-Flash-0731 (167 GB on Hugging Face) ranks ahead of MiniMax M3 on Artificial Analysis charts while charging $0.14 per million input tokens and $0.27 per million output tokens. MiniMax released its H3 omni-modal model that ingests text, images, video, and audio in one context and outputs 2K video clips with native stereo audio for durations of 4–15 seconds. Stateless MCP 2.0 and DataFlow-Harness both lower the barrier for reliable agent tooling by replacing session state and free-form scripts with auditable, single-request calls and persistent DAGs.

Top Story

MiniMax released MiniMax H3, a general-purpose multimodal generation model that treats text, images, video, and audio as a single unified context and returns video with native stereo sound. The model produces 2K output at integer durations between 4 and 15 seconds without bolted-on audio tracks. It is positioned as a native omni-modal system rather than a text-to-video model with separate audio components. Builders working on short-form video with synchronized sound can now generate clips directly from mixed inputs instead of stitching separate pipelines. Watch for follow-on releases that extend duration or add longer context windows. Source: marktechpost.com


Model Updates

DeepSeek-V4-Flash-0731: Simon Willison The 304B-parameter model ships with unchanged architecture but improved post-training that boosts agentic and coding performance. It ranks ahead of the 428B MiniMax M3 on Artificial Analysis Pareto charts while costing $0.14 per million input tokens and $0.27 per million output tokens. Simon Willison notes strong results on the Intelligence Index versus Cost chart and shows that raising reasoning effort via OpenRouter markedly improves output quality on tasks such as drawing a pelican riding a bicycle. The release appeared on Hugging Face on July 31, 2026, and the official DeepSeek API moved into public beta the same day. Builders should test it this week for agent loops or code generation where cost per successful task matters more than raw frontier scale. Source: simonwillison.net

DeepSeek-V4-Flash-0731 pricing and cache behavior: Simon Willison Default runs cost 0.44 cents and high-reasoning runs cost 0.22 cents per the linked Gist; the first request in a session benefited from prompt caching. The model is available through OpenRouter and the official DeepSeek API now in public beta. Teams running repeated agent prompts can expect lower effective cost once caching activates. The Gist pricing section details how cache hits reduced the second call below the listed rates. Source: x.com

DeepSeek upgrade details: MarkTechPost DeepSeek published the official V4-Flash-0731 checkpoint on Hugging Face on July 31, 2026, confirming it supersedes the earlier preview with the same 304B size. Gains come entirely from re-post-training rather than architectural changes. The release targets agentic and coding workloads and moves the V4-Flash API into public beta. The model card states the architecture and parameter count remain identical to the preview version. Source: marktechpost.com


Agent & Tool Developments

Stateless MCP 2.0: Simon Willison The 2026-07-28 Model Context Protocol revision replaces the two-request initialize-plus-call flow with a single stateless POST that includes MCP-Protocol-Version and Mcp-Method headers. Simon Willison built mcp-explorer, datasette-mcp, and the llm-mcp-client plugin in one week to explore the simpler spec. The change removes server-side session storage and makes MCP tools easier to audit than full shell access. Legacy stateful calls required an initialize step that returned a Mcp-Session-Id header for all subsequent requests; the new format embeds client info inside a _meta object in the single JSON body. The stateless design also removes the need to maintain session affinity across load-balanced backend instances. Source: simonwillison.net

DataFlow-Harness structured pipelines: VentureBeat Peking University researchers released an open-source framework that guides LLM agents to build persistent, editable DAG workflows instead of disposable Python scripts. On a 12-task benchmark it reached 93.3 % end-to-end pass rate while cutting API cost 72.5 % and latency 49.9 % versus vanilla Claude Code. The system uses typed mutations against a live operator registry and DataFlow-Skills for domain rules. It was tested with Claude Opus 4.7 as the backbone model and outperformed both MCP-only and Context-Aware CC baselines on complex tasks such as textbook-to-VQA extraction. The framework is released under Apache 2.0 and requires an adapter layer when targeting external orchestration systems such as Airflow or Spark. Source: venturebeat.com

datasette-agent 0.4a0: Simon Willison The new release adds await context.browser_task() so agent tools can run JavaScript directly in the user’s browser. The capability lets Datasette Agent plugins expose custom browser-side actions without additional server round-trips. The change is documented in pull request #33 and targets use cases where client-side rendering or DOM inspection is required inside an agent workflow. Source: simonwillison.net


Practical & Community

smevals eval suite: Simon Willison The new tool runs small YAML-defined eval suites across models, prompts, and harnesses, then grades results with custom checkers. Commands include uvx smevals run, uvx smevals grade, and uvx smevals serve for a local results browser. It supports any model reachable by the llm library and separates execution from grading. An example eval directory contains task YAML files that define challenges such as SVG generation or haiku writing, along with grader scripts that perform string checks or call secondary models for semantic scoring. Source: simonwillison.net

Groundcover observability: VentureBeat The company raised $100 million and now has more than 250 paying customers; it uses eBPF collection inside customer clouds (BYOC) so telemetry never leaves the user’s AWS, Azure, or GCP account. Pricing is based on monitored hosts rather than data volume, which suits high-telemetry AI agent workloads. The Series C round was led by One Peak and brings total funding to $160 million. Groundcover’s Agent Mode lets engineers query logs, metrics, traces, and Kubernetes events with natural language while keeping all raw data inside the customer’s own infrastructure. Source: venturebeat.com

VLMs in radiology reporting: r/MachineLearning A new arXiv paper shows standard metrics reward repetitive “normal” templates and penalize clinically meaningful rare terms. The authors introduce a framework that measures term erasure and biased hallucination in chest X-ray report generation. The paper, titled “Measuring What VLMs Don’t Say: Validation Metrics Hide Clinical Terminology Erasure in Radiology Report Generation,” is available at arXiv:2603.01625 and was posted by u/ade17_in. Source: reddit.com


Under the Hood: Stateless Model Context Protocol

Everyone talks about MCP as a simple “plug in a tool” layer. In practice the original stateful design forced every client to open a session, store a Mcp-Session-Id, and route every subsequent call to the same backend instance. The 2026-07-28 revision collapses that into one HTTP request carrying protocol version and method headers, eliminating server-side session tables entirely. The engineering payoff is horizontal scaling without sticky sessions and simpler client code that no longer needs to manage or retry session IDs. The tradeoff is that servers lose any opportunity to keep per-client mutable state across calls; tool authors must therefore design purely functional operations or push state into the client-supplied _meta object. Teams that previously wrapped MCP behind a stateful proxy can now drop the proxy and expose tools directly behind ordinary load balancers. The practical decision rule is: if your tool needs only the arguments supplied in the current call, switch to stateless; if it must remember prior interactions, keep that memory in the client or in an external store the tool can reach. Implementation complexity drops further because the single-request format removes the need for servers to handle session initialization errors or timeout cleanup. Clients written against the new headers can be tested with ordinary curl commands that include the MCP-Protocol-Version and Mcp-Method fields, lowering the barrier for debugging. When load increases, stateless servers can be replicated behind any standard HTTP load balancer without custom session affinity configuration. The only retained state lives inside the _meta block or in an external system the tool itself queries, which keeps the protocol surface small and auditable.


Things to Try This Week

  • Run uvx mcp-explorer list https://agentic-mermaid.dev/mcp then inspect and call tools to see stateless MCP in action.
  • Test DeepSeek-V4-Flash-0731 at high reasoning effort via OpenRouter on a coding or agent task and compare cost against your current model.
  • Install the alpha llm-mcp-client plugin and wire it to datasette.simonwillison.net/-/mcp to let an LLM run SQL against a live dataset.
  • Clone DataFlow-Harness and run one of the 12 benchmark tasks to see how typed DAG mutations differ from free-form script generation.
  • Build a small smevals suite for a task you care about (SVG generation, haiku writing) and grade runs across two models.

On the Horizon

  • More open-weight releases from Chinese labs are expected to target the price/performance band currently occupied by DeepSeek-V4-Flash.
  • Additional MCP server implementations and client libraries will appear as the stateless spec stabilizes.
  • Further agent-telemetry platforms will adopt host-based or BYOC pricing to handle rising AI workload data volumes.
  • Evaluation harnesses like smevals and DataFlow-Harness will see community forks aimed at specific vertical domains.

💬 Reply to this email — Patrick reads every one.

Share: X · LinkedIn · WhatsApp

Forwarded this email? Subscribe here — it's free.

▶ Listen to the podcast

📺 Watch on YouTube  ·  📝 Read the blog  ·  🖼 Free image gallery (CC BY-SA)  ·  📊 Data Hub & Story Trackers  ·  🧭 Start Here

Nerra Network · AI-narrated voice (Grok TTS) · Editorial by Patrick

You're receiving this because you subscribed to Models & Agents on nerranetwork.com.

Issue #128 · Models & Agents · Aug 1, 2026
Don't miss what's next. Subscribe to Nerra Network:
← Newer An AI just built a working city-builder game where you… · M&A Beginners 🎓 Older → Astronomers have detected the first exomoon, opening a… · Frontiers 🛰️
nerranetwork.com
Powered by Buttondown, the easiest way to start and grow your newsletter.