惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
I
InfoQ
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog
博客园_首页
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Engineering at Meta
Engineering at Meta
B
Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
F
Fortinet All Blogs
月光博客
月光博客
GbyAI
GbyAI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Enterprise AI just shifted: Claude +128%, OpenAI -8%. Wha...
Patrick Hugh · 2026-05-15 · via DEV Community

SaaStr published Q2 enterprise AI usage numbers this week. The shape:

  • Claude: +128%
  • Gemini: +48%
  • OpenAI: -8%
  • Grok: rounding error

That is the cleanest single-quarter share shift I have seen in this space all year. And the obvious read is wrong.

The lazy take

The lazy take is "Anthropic won, switch to Claude." If you ship that take, you are the same person who told their team to standardize on OpenAI 18 months ago. The whole point of the chart is that single-vendor positions move 100+ points in 90 days now.

The data is not telling you which model to pick. It is telling you that picking is a recurring decision, not a one-time one.

What is actually driving the shift

Three things, near as I can tell from talking to builders shipping agents in production:

  1. Coding agents. Claude Code and the Sonnet line ate the developer market. Once a developer is in Claude all day for code, they tend to reach for the same API for their app's agent calls. Developer mindshare leaks into procurement.
  2. Agentic retention. Long-horizon tool-use tasks reward models that follow instructions and recover from errors. Teams that built real agentic workflows on Claude 3.7 and 4 stuck around.
  3. OpenAI cycle gap. GPT-5 landed but did not produce a Claude-Code-tier shift inside engineering orgs. Distribution from ChatGPT is consumer, not enterprise API usage.

None of these are permanent. Gemini 3 is coming. OpenAI ships something every six weeks. The chart will look different in October.

What this means if you are building

If you are building an agent or AI feature today, the share data is a forcing function. Three concrete moves:

1. Put a model abstraction layer in front of every call. Not a 400-line framework. Just one function in your codebase that takes a prompt and a job type and decides which model and which provider. The function reads from config, not from the call site. When the next chart flips, you change one file.

2. Wrap every agent in a budget. Cost per task varies 5x between providers and 10x inside a single provider's tier list. Without a cap, a model switch can blow your unit economics overnight. This is exactly what AgentGuard does. Install it, set a per-task ceiling in dollars, the agent stops when it hits the cap. Two lines of Python.

3. Run a real eval before you migrate. "Claude is better" is not a procurement decision. Pick your 20 hardest production tasks, run them through three models, score the outputs. The eval becomes a regression suite the next time you re-evaluate. Most teams never build this and that is why they re-platform every nine months on vibes.

The deeper pattern

Every share chart in this space is going to whipsaw for at least another two years. The infrastructure decision is not "which model." It is "how fast can I switch which model." Teams that hard-code one provider into prompts, retry logic, observability, and billing are paying a re-platforming tax every other quarter.

The teams that compound are the ones treating the model as a hot-swappable component. Eval suite, abstraction layer, cost cap, done. Then read the next share chart and move on with your day.

If you want the cost-cap part for free: pip install agentguard47. AgentGuard is a 2-line runtime budget guard for agents. It does the cap, the token limit, the rate limit. Use it, do not use it, but do not ship an agent without one.