Skip to content
Articles

News · · 10 min

AI and Development — September 11, 2026

Period: September 10 — morning of September 11.

Today's main storyline — harness is definitively becoming a separate product layer. Simultaneously, models are being optimized specifically for agent workloads, and infrastructure is being optimized for cheap inference.

1. Hardware and Infrastructure

d-Matrix embeds a specialized inference chip directly into an Nvidia rack

What happened. d-Matrix will connect its next-generation Raptor XPU to Nvidia infrastructure via NVLink Fusion. The chips will operate inside MGX racks with NVLink scale-up and Spectrum-X networking. The final Raptor chips are expected to complete the design stage by the end of 2026, with ready systems anticipated in 2027.

Why it matters. Nvidia is beginning to transform its own rack architecture from a closed GPU system into a platform where specialized accelerators can be embedded.

This allows the market to move from:

one universal GPU

to:

GPU + specialized inference XPU + shared network/rack infrastructure.

For coding assistants, voice agents, and chat systems, inference latency and throughput are often more critical than training capability.

What the data showed. There are no performance benchmarks for Raptor yet. The significant fact is the integration interface itself and the system's orientation towards low-latency inference. Financial terms of the deal were not disclosed.

What you need to understand now: NVLink, scale-up vs scale-out, inference accelerator, rack-scale architecture, tokens/sec.

What this could change. For now, observe. But for large inference workloads, it's becoming more reasonable to design the software stack so it isn't rigidly tied to a single type of accelerator.

Date: September 10. Primary source: Nvidia — d-Matrix adopts NVLink Fusion


2. Models

DeepSeek V4.1 Flash: small number of active parameters, huge KV-cache gain, and a bet specifically on agents

What happened. DeepSeek released V4.1-Flash — a 552B MoE model with a new Causal Encoder–Decoder architecture. Only 8B parameters are activated on input, and 16B on output. The model is natively multimodal.

The main system optimization is the KV-cache. Compared to the previous generation, it requires:

  • 4x less HBM;
  • 8x less SSD;
  • relative to the first DeepSeek generation, a total KV-cache reduction of 437x is claimed.

For long-running agents, this is especially important: a large context becomes not just a capability, but also an infrastructure cost.

What the data showed. In vendor-run benchmarks:

  • Terminal-Bench 2.1: 90.6, vs. 87.9 for V4 Pro;
  • DeepSWE v1.1: 74.2, vs. 62.7;
  • CyberGym: 88.1, vs. 83.3;
  • AutomationBench: 54.8, vs. 43.2.

However, on knowledge-heavy tasks, V4 Pro remains stronger: GPQA Diamond — 92.4 vs. 90.9, comparable HLE text score — 42.7 vs. 39.1. Therefore, the correct conclusion is not "Flash is better than Pro," but Flash is more strongly optimized specifically for tool-use/coding/agent workloads.

And here's a particularly important detail: the same V4.1 Flash scored from 65.5 to 74.2 on DeepSWE depending on the harness. On Terminal-Bench 2.1 — from 84.1 to 90.6. That is, just changing the scaffold resulted in a spread of up to 8.7 percentage points.

Why it matters. This is almost a laboratory confirmation of the thesis from recent issues:

model score ≠ agent performance.

Model, cache architecture, and harness are beginning to be optimized jointly.

What you need to understand now: MoE, active parameters, KV-cache, agent scaffold, HBM.

What this could change. If a team is comparing models for coding/automation, benchmarks need to be run within your actual harness, not by taking the maximum published score.

For mass agent workers, V4.1 Flash is worth testing as an economical layer, leaving more expensive models for tasks requiring complex standalone reasoning.

Date: September 10. Primary source: DeepSeek — V4.1 Flash


DeepSeek effectively replaces its flagship Pro model with a cheaper Flash model

This is a separate product implication of the release.

V4 Flash and V4 Flash Vision have already been decommissioned. And on September 14, all API calls to deepseek-v4-pro will be automatically routed to V4.1 Flash and billed at the Flash rate — until V4.1 Pro is released.

This is an unusual signal: the provider believes that for most production workloads, a more efficient architecture is already more beneficial than the previous heavy flagship model.

Practical takeaway. If production uses deepseek-v4-pro, this change should not be perceived as a harmless price reduction. The behavior of the underlying model is actually changing; reasoning-heavy workloads should be regression-tested before September 14.


3. Architecture and Operation of Agent Systems

OpenAI spins off the Codex harness into a standalone Agents API

This is the main architectural release of the day.

What happened. OpenAI opened public beta for the Agents API — a managed agent runtime based on the same harness used in Codex.

The developer specifies:

model + tools + environment + task

and the API takes care of long-running sessions, context management, tool orchestration, and subagents.

The separation is especially important:

harness and execution environment.

OpenAI manages the harness, but the sandbox can be chosen from:

  • OpenAI-hosted;
  • your own infrastructure;
  • external providers like Cloudflare, E2B, Modal, Vercel, Daytona, Oracle, and others.

Why it matters. The agent framework is starting to look like a standalone infrastructure service — similar to a managed database or Kubernetes control plane.

Previously, a company would assemble itself:

context compaction + MCP + retries + subagents + durable sessions + sandbox.

Now this layer is gradually turning into a commodity API.


What OpenAI now considers part of the "harness"

The release is also useful because it very explicitly defines the composition of a modern agent runtime.

The Agents API includes:

Automatic context compaction. An agent can work across multiple context windows without requiring manual implementation of summarization/state handoff.

Tool search. Full descriptions of all tools don't need to constantly reside in the context — necessary schemas are loaded on-demand, reducing token consumption and preserving cache efficiency.

Programmatic tool calling. An agent can launch tools in parallel, combine results with code, and return only the relevant part of the result to the LLM.

Subagents. The main agent gets independent workers with separate context windows and can execute independent subtasks in parallel.

This is a good practical decomposition of what distinguishes a harness from a simple model API.

What you need to understand now: context compaction, durable session, MCP, subagent, sandbox.


Initial production data shows harness can change economics by tens of percent

OpenAI cites several customer measurements. These should be considered vendor-provided case studies, not independent benchmarks.

Ciridae reports an increase in its own evaluation score from 0.71 to 0.85 and roughly 4x reduction in latency after using subagent orchestration. SafetyKit claims a 60% reduction in cost per case without degrading its target performance. Hypha reports an 86% reduction in failed agent responses after separating harness and sandbox.

Nash already reports thousands of long-running agents involved in managing hundreds of millions of deliveries and executing workflows lasting hours or days.

Why it matters. These are the first sufficiently concrete pieces of evidence that the next level of optimization isn't necessarily a new model.

You can keep the underlying model and change:

context management → orchestration → sandbox → tool access → concurrency

and significantly shift cost, latency, and reliability.

What this could change. If a company currently maintains its own agent framework, it makes sense to separately calculate the cost of its support. Part of the infrastructure layer is beginning to become a managed commodity.

But the trade-off is obvious: convenience increases alongside vendor lock-in on harness semantics.

Date: September 10. Primary source: OpenAI — Introducing the Agents API


4. Production AI, SaaS, and Business

Mistral + Cloudera: enterprise AI is increasingly moving towards a "bring the model to the data" model

What happened. Mistral and Cloudera announced a partnership for regulated enterprise workloads. The idea is to run and adapt Mistral models within Cloudera's hybrid/on-prem data environments instead of mandating the transfer of proprietary data to an external AI SaaS.

Why it matters. In the enterprise, an alternative architecture is growing:

data → external model API

is being replaced by:

model → where the data already resides.

This is especially important for banks, telecoms, industry, and government agencies.

The connection to previous issues is quite clear: open weights are becoming not just a matter of price or developer freedom, but an element of data sovereignty and exit strategy from a provider.

What the data showed. Today this is a partnership announcement, not a production benchmark. Therefore, it cannot yet be claimed that such deployment is cheaper or higher quality than a cloud API.

What you need to understand now: hybrid cloud, data sovereignty, open weights, self-hosting, data gravity.

What this could change. If proprietary data is a company's main competitive asset, it's worth comparing two options not only by model quality:

sending data to the model vs deploying the model next to the data.

Date: September 10. Primary source: Mistral — partnership with Cloudera


5. GitHub / Open-Source Signals

The most important open-source signal today is not a new framework, but the opening up of the harness layer itself

OpenAI separately emphasizes that the Agents API works on top of the open-source Codex harness: the core logic responsible for model calls, tools, and context orchestration remains available for study. The managed API is a hosted implementation on top of this layer.

DeepSeek, for its part, publishes V4.1 Flash weights and is already working with OpenCode on inference/agent integration.

An interesting market form emerges:

open model + open harness + managed runtime/sandbox.

This is a more modular stack than the previous model of a "closed AI SaaS entirely."

Why it matters. A team can potentially change each layer independently:

  • model;
  • harness;
  • sandbox;
  • tools;
  • hosting.

If this modularity takes hold, vendor lock-in can be discussed more precisely: not "we depend on OpenAI," but which specific layer we depend on.


The Main Technological Shift of This Issue

Today, the agent stack has practically taken shape as an independent technological chain:

efficient model → specialized inference hardware → harness → durable session → sandbox → subagents → production workflow.

DeepSeek shows that model architecture is now being optimized for the cost of long agent sessions; OpenAI is turning harness into a separate API; Nvidia is opening rack infrastructure to specialized inference accelerators.

The most important conclusion: the quality of an agent system is increasingly less deducible from the model's name. The same model changes results by several points just from the scaffold, and production case studies show order-of-magnitude differences in latency and double-digit changes in cost after changing the orchestration layer.

What to Discuss with the Technical Team

  1. Which part of our agent stack is truly our competitive advantage, and which is custom-built infrastructure that could already be replaced with a managed harness?

  2. Are we benchmarking models within our actual agent harness, or are we still transferring vendor scores directly into architectural decisions?

  3. What portion of our agent expenses is not on reasoning, but on KV-cache, context, tool schemas, retries, and orchestration?

  4. Can we independently replace the model, harness, and sandbox, or are these three layers already technically intertwined?

  5. If we use the DeepSeek V4 Pro API, have we run regression tests before the automatic endpoint switch to V4.1 Flash on September 14?