Skip to content
AI Infra Weekly2026 · 04 · 27

GPT-5.5 Gets Pricier, Open Models Close the Gap, and Agent Governance Moves Into the Control Plane

GPT-5.5’s higher pricing, DeepSeek V4 and Kimi K2.6’s open-weight gains, and Databricks’ agent governance push enterprises toward task-based routing and AI control planes.

The infrastructure layer is accelerating

This week has been one of the most information-dense weeks of 2026 so far. Two things happened at the same time: OpenAI released GPT-5.5, directly doubling API unit prices; DeepSeek released V4 preview, pricing its flagship model at USD 1.74 per million input tokens while releasing open weights. Taken together, these two events form a rare signal: top-tier models continue to move upward in pricing, while open-source alternatives continue to approach the frontier. The cost structure and supplier strategy of enterprise AI are reaching a real point of divergence.

Beyond these two developments, four additional infrastructure-layer moves are worth recording this week. Claude Opus 4.7 with a 1 million-token context window is now generally available, and AgentsFlare has integrated it at launch, allowing enterprises to call the model without being tied to any single cloud provider. Moonshot AI open-sourced Kimi K2.6, which surpassed GPT-5.4 on coding benchmarks and became another important data point for open-source frontier models this week. Databricks upgraded Unity AI Gateway into an enterprise-grade agentic governance control plane, enabling identity isolation for MCP access and LLM Judge-powered guardrails for the first time. Google announced an additional investment of up to USD 40 billion in Anthropic, bringing the combined investment commitments from the two major cloud providers to Anthropic to more than USD 60 billion. This raises a new question about the independence of enterprise AI supply chains.

Overall, this week’s core trend can be summarized in one sentence: model capability is becoming more widely accessible, but operational complexity is rising rapidly, while supply chain concentration is increasing at the same time. The tension among these three forces is pushing the enterprise AI control plane from a useful architectural layer into a required infrastructure component.


I. OpenAI Launches GPT-5.5: API Prices Double, but Real Cost per Task May Not Rise

On April 23, OpenAI officially released GPT-5.5, only six weeks after GPT-5.4. This is not a minor version update. GPT-5.5 is OpenAI’s first fully retrained foundation model since GPT-4.5. It runs on NVIDIA GB200 NVL72 rack-scale systems, with API pricing set at USD 5.00 per million input tokens and USD 30.00 per million output tokens, directly doubling the price of GPT-5.4. GPT-5.5 Pro was released at an even higher price point: USD 30.00 per million input tokens and USD 180.00 per million output tokens. Three variants were launched in parallel: Standard, Thinking for extended reasoning, and Pro for maximum accuracy. A 1 million-token context window is available across all three versions.

For enterprises, this release needs to be understood at two levels.

At the pricing level, the USD 5 / USD 30 price establishes GPT-5.5 as a model for “high-accuracy, high-cost tasks,” rather than the default option for general workloads. OpenAI’s argument is that although the per-token price has doubled, the model may require fewer turns to complete a task and may use context more effectively, meaning that the real cost per business task could remain flat or even decline. This is particularly relevant in software engineering, DevOps, legal analysis, healthcare, and other scenarios that require very high accuracy.

At the architecture level, price stratification is intensifying. GPT-5.5 Standard, GPT-5.4, GPT-4.1, and GPT-4.1 nano now occupy four pricing tiers ranging from USD 5 / USD 30 to USD 0.10 / USD 0.40, representing a 50-fold cost difference. Every new model release requires enterprises to reassess which tasks truly require a flagship model and which tasks can be handled by lighter models. Without a systematic routing layer to enforce this judgment, execution is left to engineering teams manually. The result is usually either overuse of expensive models or degraded accuracy caused by cost-cutting pressure. For enterprises already connected to AgentsFlare, quota management and intelligent routing policies can precisely restrict GPT-5.5 usage to scenarios where it is genuinely justified, without changing business code.


II. Two Open-Source Frontier Releases: DeepSeek V4 and Kimi K2.6 Arrive in the Same Week, Approaching Closed-Source Flagships

On April 24, DeepSeek released V4 preview, including two models: V4-Pro, with 1.6 trillion total parameters and 49 billion active parameters, and V4-Flash, with 284 billion total parameters and 13 billion active parameters. Both support a 1 million-token context window and use a Hybrid Attention Architecture with DeepSeek Sparse Attention, or DSA. Their KV cache is compressed to 10% of the previous generation. Pricing is USD 0.14 per million input tokens and USD 0.28 per million output tokens for V4-Flash, and USD 1.74 per million input tokens and USD 3.48 per million output tokens for V4-Pro. Model weights have been released on Hugging Face, allowing developers to download and self-host them directly. Legacy models deepseek-chat and deepseek-reasoner will be retired on July 24, 2026.

In the same week, Moonshot AI released Kimi K2.6 on April 20. The model has 1 trillion total parameters, 32 billion active parameters, and a 262K-token context window. It is fully open-sourced under the Apache 2.0 license and is already available on Cloudflare Workers AI. It scored 58.6% on SWE-bench Pro, exceeding GPT-5.4 at 57.7% and Claude Opus 4.6 at 53.4%, making it the highest-scoring open-source model on coding benchmarks so far.

Compared with its predecessor, DeepSeek V4’s key improvements over V3 are clear: the context window expands from 64K to 1 million tokens; the KV cache is compressed to approximately 10% of V3, significantly reducing VRAM pressure and self-hosting cost during inference; and the DSA architecture optimizes the ratio of active parameters, with V4-Pro activating only around 3% of total parameters, enabling more concurrent requests under the same compute budget. Horizontally, V4-Pro has approached GPT-5.4 levels on official coding and reasoning benchmarks, while costing around 35% of the latter. Kimi K2.6 has even surpassed GPT-5.4 in coding scenarios, while being fully open-source and free from commercial restrictions for scenarios with fewer than 100 million monthly active users or less than USD 20 million in monthly revenue. Together, the two models send a clear signal: open-source frontier models are no longer merely “good-enough substitutes,” but may be the optimal choice in specific scenarios.

It should be noted that community feedback on DeepSeek V4’s actual performance remains mixed. Several developers on X, formerly Twitter, and YouTube have noted in independent tests that V4-Pro’s instruction following and multi-step reasoning stability in Chinese-language contexts are weaker than GPT-5.5, with a gap between official benchmarks and real-world usage. Community feedback on Kimi K2.6 has been relatively positive, but its 262K-token context window is less flexible than DeepSeek V4’s 1 million-token window in long-document scenarios. Both models remain in preview or early-stage release. Enterprises should conduct task-specific evaluations based on their own workloads before production deployment, rather than making decisions directly from benchmark scores.


III. Claude Opus 4.7 with a 1 Million-Token Context Window Is Now Generally Available

On April 20, Anthropic announced the full availability of Claude Opus 4.7. Its core specifications include a 1 million-token context window, high-resolution image support, adaptive thinking, which dynamically allocates reasoning token budgets based on request complexity, and a SWE-bench Pro score of 64.3%. This software engineering benchmark score is higher than Kimi K2.6 at 58.6% and GPT-5.4 at 57.7%, making it the highest among closed-source models at this point.

AgentsFlare has integrated Claude Opus 4.7 at launch. Enterprises can call it directly through a unified access layer, without being tied to the compliance framework of any specific cloud provider and without managing multiple sets of API credentials.

For enterprises, a 1 million-token context window means that entire codebases, full contract files, and multi-turn conversation histories can be processed in a single request. Complex pipelines that previously required chunking, retrieval, and stitching can be substantially simplified. Adaptive thinking means that the model dynamically allocates compute according to request complexity and automatically balances cost and quality. This has direct cost optimization value for enterprise workflows with mixed request types, such as pipelines that include both simple classification and complex code generation.


IV. Databricks Unity AI Gateway: A More Complete Answer for Agentic Governance, but Blind Spots Remain in Cross-Cloud Scenarios

On April 15, Databricks released a major update to Unity AI Gateway, integrating it into the Unity Catalog system. New capabilities include MCP governance, where agents accessing external systems through MCP operate under the identity of the real user initiating the request rather than a shared service account; LLM Judge-powered guardrails in beta, including configurable PII detection and redaction, prompt injection detection, data exfiltration protection, and hallucination protection; unified cost tracking, recording actual dollar costs by endpoint, request tags, user identity, model, and provider; and a unified API across Anthropic, OpenAI, Google, and open-source models, with automatic fallback during failures.

For enterprises, this update addresses one of the most difficult governance blind spots in the age of agentic AI. The traditional permission model assumes that human users hold permissions and that systems act on their behalf through service accounts. But when AI agents begin autonomously accessing databases, calling internal APIs, and writing files through MCP, the question of “who actually performed this operation” becomes blurred. The service account has permission, but which user request stands behind that permission? Unity AI Gateway’s on-behalf-of mechanism ensures that every external access by an agent carries the real user identity, completing the audit chain.

This governance capability is currently deeply tied to the Databricks Lakehouse system. If an enterprise’s AI workloads span AWS, Azure, and private deployments, Unity AI Gateway can only cover the layer managed by Databricks, while the rest still needs to be addressed independently. For enterprises with workloads distributed across multi-cloud environments, AgentsFlare provides a unified AI access control layer across AWS, Azure, and private deployments. MCP governance, identity tracing, and cost attribution do not depend on any specific cloud vendor system and can be enforced uniformly in hybrid multi-cloud environments, eliminating the need to maintain a separate governance strategy for each cloud.


V. Anthropic Launches a Managed Agent Runtime: Lower Deployment Barriers, but Data Sovereignty Comes to the Surface

This week, Anthropic released the public beta of Claude Managed Agents, a fully managed agent runtime. Developers only need to define the model, system prompt, and toolset. The platform automatically manages the full agent loop: reasoning, tool selection, action execution, SSE streaming responses, and secure sandbox isolation. The ant CLI, released at the same time, is Anthropic’s first official command-line client. It supports native integration with Claude Code and allows API resources to be versioned as YAML files.

For enterprises, this development should be viewed from two directions.

On the barrier-reduction side, building production-grade agents previously required teams to handle retry logic, tool call state management, streaming output exceptions, and sandbox security themselves. These are real engineering costs, and many enterprise AI projects get stuck here rather than at the model capability layer. Managed Agents moves this complexity into the platform, allowing teams to focus on business logic.

On the trade-off side, being fully managed means data flows through Anthropic’s infrastructure. For customers with strict data localization or network isolation requirements, this option must first pass compliance review before entering production. This binary choice — procurement convenience versus data sovereignty — will become increasingly important in the second half of 2026 as agents enter core business workflows. One of the core responsibilities of enterprise-grade AI infrastructure is to help enterprises retain control in this choice, avoid lock-in to any single platform, and maintain full control over their AI traffic and data.


VI. Google Invests up to USD 40 Billion More in Anthropic: What Should Enterprises Do When Claude’s Two Major Backers Are Both Cloud Providers?

On April 24, Google announced that it would invest up to USD 40 billion in Anthropic in two phases: an initial USD 10 billion immediately, followed by an additional USD 30 billion subject to performance conditions. The current valuation of Anthropic is USD 350 billion. Together with Amazon’s previous commitment of up to USD 25 billion, total investment commitments from the two major cloud providers to Anthropic have exceeded USD 65 billion. Anthropic’s annualized revenue exceeded USD 30 billion this month, more than tripling from USD 9 billion at the end of 2025.

On the surface, this is an investment. In substance, it is a reaffirmation of supply chain structure. Anthropic is one of the most widely recognized model providers in the enterprise market, but its compute resources, distribution network, and commercial operations are increasingly bound to Google Cloud and AWS. For enterprise users, this means the boundary between “choosing Claude” and “choosing Google Cloud or AWS” is becoming blurred. When an AI provider’s infrastructure depends heavily on specific cloud providers, enterprises calling Claude are also indirectly deepening their dependence on those cloud platforms.

This is not unique to Anthropic. OpenAI’s deep relationship with Microsoft Azure and Google’s bundling of its own models with GCP point in the same direction: frontier models are becoming a new entry point for cloud providers to lock in users. For enterprises, true supply chain resilience means that which model is called, which path data flows through, and which budget bears the cost should be determined by the enterprise itself, not by the cloud providers behind the model. This is the strategic value of an independent AI Gateway layer: it allows enterprises to preserve switching capability among Claude, GPT, DeepSeek, and Kimi, rather than passively accepting vendor lock-in as investment relationships evolve.


The Real Pressure on Enterprise AI Infrastructure as Model Competition Accelerates

Viewed together, the six developments this week show that enterprises are not facing a simple question of “which model to choose,” but a systemic architecture governance challenge.

Model update frequency has exceeded the traditional response speed of enterprise IT. From GPT-5.4 to GPT-5.5, six weeks. From Opus 4.5 to Opus 4.7, less than two months. Every update brings pricing changes, shifting capability boundaries, and routing strategies that need to be reassessed. For enterprises without a unified access layer, every model iteration becomes a change management exercise that may involve multiple teams.

Pricing stratification is making supplier selection more complex. This week saw both GPT-5.5 Pro’s premium USD 30 / USD 180 pricing and the ultra-low pricing of DeepSeek V4-Flash and Kimi K2.6. The gap between the two ends now exceeds 200 times. “Use the best model” has become an expensive default. “Dynamically select models by task type” is moving from an optimization technique to a necessary condition for cost control.

Supply chain concentration is quietly increasing. Google and Amazon have committed a combined USD 65 billion to Anthropic, and frontier models are becoming a new entry point for cloud providers to lock in users. The governance blind spots of agentic AI are also moving from the edge into the core. Agent permissions, costs, and auditing will shift within 12 to 18 months from internal engineering issues to formal compliance and risk management topics.


What Enterprises Should Do Next

First, enterprises should establish a tiered model invocation strategy now, rather than waiting to optimize after bills exceed expectations. The release of GPT-5.5 sets a new pricing anchor. Enterprises should identify which scenarios truly require high-accuracy models, such as high-complexity code generation and legal document analysis, and which scenarios can be handled by mid-tier or open-source models. This policy should be enforced at the access layer rather than left to each team to decide independently.

Second, enterprises should seriously evaluate the applicability of open-source models in coding and internal tool scenarios, but decisions should be based on real-world test data rather than benchmark scores. Kimi K2.6 has already surpassed GPT-5.4 on SWE-bench Pro, and DeepSeek V4-Pro is priced at 35% of GPT-5.4 while both support self-hosting. Enterprises should first run parallel evaluations in non-core workflows and use actual business metrics to determine whether to switch, while fully validating preview-stage stability.

Third, supply chain independence should be included in AI architecture evaluation criteria, not only model performance. Google’s USD 40 billion investment in Anthropic is a reminder that frontier models and cloud platforms are becoming more deeply bound together. When selecting AI suppliers, enterprises need to consider data sovereignty and supply chain resilience at the same time. Establishing an access layer that can switch across models and clouds is the foundation for preserving future negotiating leverage.

Fourth, before agent workflows enter production, enterprises should clarify the governance architecture. The questions that need to be answered are: through which tools do your agents access external systems? What identity is used for these accesses? Are access records auditable? If these three questions do not have answers today, the cost of engineering remediation will be much higher once compliance teams begin reviewing agent deployments.