Cognition hits $26B valuation, inference economics shift, and the agent stack matures
Published on 28.05.2026
Cognition Raises $1B at a $26B Valuation, Making It the Largest Independent Agent Lab
TLDR: Cognition closed a $1B Series D at a $26B valuation, reporting $492M in run-rate revenue and more than 10x enterprise growth year-to-date. The round puts the company in a category by itself among remaining independent agent labs.
Summary: Eight months ago, Cognition was valued at around $10B in its Series C. Now it's worth $26B, has cleared $492M in annualized revenue, and is projecting over $1B ARR by end of year. That's not a typo, and it doesn't feel like a bubble inflated by hype alone. The growth curve closely mirrors the "WTF Happened in 2025" charts, and Cognition says that's no coincidence. In enterprise SaaS, ARR is a trailing indicator of actual usage, so these numbers represent real commitments from real companies that have already integrated the product into their workflows.
The customer list is telling. When companies like Exa and Modal, both sophisticated technical buyers with high standards for tooling, show up as reference customers, that's a signal worth paying attention to. Cognition's position as the largest remaining independent agent lab is a thesis the company has been building toward for over a year, and the funding validates that bet. The closest competition is embedded inside larger platform plays from OpenAI, Anthropic, and Google, which means Cognition occupies an interesting market position as a pure-play specialist.
What this tells me is that the coding agent market has moved past early adopter territory. Enterprises are running these systems in production, budgeting for them, and expanding usage. The $26B valuation reflects a belief that this trajectory continues, not just that the demo is impressive. I find that more interesting than the headline number itself.
There's also a practical implication for the broader market. When one company is publicly projecting $1B ARR from coding agents, it becomes much harder for enterprises to dismiss the category as experimental. That normalization affects procurement conversations everywhere.
Key takeaways:
- Cognition is now valued at $26B with $492M in run-rate revenue and 10x+ enterprise growth in 2026
- The company is projecting over $1B ARR by end of year, making it the clearest data point on coding agent monetization at scale
- Enterprise adoption by technically demanding customers like Exa and Modal validates the production-readiness argument
- Independent agent labs occupy a distinct position from platform-embedded offerings, which is proving commercially valuable
Why do I care: The valuation is a headline, but the ARR trajectory is what I'm watching. If Cognition actually hits $1B ARR this year, it reframes every conversation about whether coding agents are a product category or just a feature. For developers and engineering leaders, this is the moment to get serious about how these tools fit into real workflows, not just experimental use.
[AINews] Cognition raises $1B in $26B Series D
Inference Optimization Is Now an Architectural Story, Not Just a Kernel Story
TLDR: The latest batch of inference improvements, from speculative decoding to attention redesigns, shows that performance gains are coming from structural changes to how models are built, not just lower-level tuning.
Summary: For a while, inference optimization felt like a game of kernel engineers squeezing more throughput out of the same architecture. That framing is changing. EAGLE 3.1 is a good example: it improves speculative decoding not by rewriting the GPU kernels but by stabilizing hidden-state feedback and reducing attention drift at deeper decode steps. The focus on long-context acceptance length and real-world serving reliability is a sign that these systems are being designed for production workloads, not benchmark runs.
At the tokenizer level, Perplexity open-sourced a rebuilt Unigram tokenizer that cuts CPU utilization by 5 to 6 times and reaches 63 microseconds per 514-token batch with zero heap allocations. That's a meaningful engineering win in a part of the stack that often gets overlooked. CPU overhead during inference is real, and shaving it down matters for cost at scale.
The more interesting structural story is what's happening with attention. Several independent posts converged on the same observation: recent API price cuts from Chinese labs are sustainable because they reflect lower serving cost per token, not temporary subsidy. DeepSeek V4-Pro uses hybrid attention with Compressed Sparse Attention and Heavily Compressed Attention to bring a 1M-token KV cache to roughly 10% of the previous version's size, while keeping 49 billion active parameters out of 1.6 trillion total. Xiaomi's MiMo achieves similar cache efficiency through sliding window attention and hierarchical cache management. When multiple teams independently arrive at the same architectural tradeoffs, it's worth taking the pattern seriously.
The throughline here is that long-context inference economics are now being shaped by attention design and cache hierarchy, not just hardware procurement. This matters for anyone building applications on top of these APIs. The cost curves are going to continue dropping, and they're going to do so because of fundamental architectural choices, not just competition-driven pricing.
Key takeaways:
- EAGLE 3.1 improves speculative decoding through architectural changes to hidden-state feedback, not just kernel optimization
- Perplexity's rebuilt Unigram tokenizer cuts CPU utilization 5-6x with zero heap allocations
- DeepSeek V4-Pro's attention design reduces 1M-token KV cache to ~10% of its predecessor's size
- Structural attention changes are the real driver behind sustainable API price cuts from Chinese labs
Why do I care: If you're building applications on top of long-context APIs, the cost story is changing faster than most people realize. Understanding that attention architecture, not just hardware, drives these economics helps you make better bets about which APIs and providers will be cost-competitive in a year.
[AINews] Cognition raises $1B in $26B Series D
The Agent Stack Is Shifting From Model Quality to Harness-Memory Fit
TLDR: A cluster of practical agent engineering developments this week points to a maturing understanding that the harness, memory system, and task specificity matter as much as the underlying model.
Summary: There's a formulation that kept coming up in different forms this week, and it's worth stating plainly: task-harness fit matters as much as model quality. Bespoke vertical systems consistently outperform generic ones when they narrow tools, prompts, and context to the specific task at hand. This isn't a new idea, but the tooling is catching up to the theory.
LangChain shipped Deep Agents v0.6 with Delta Channels, which is a concrete engineering response to a real problem: checkpoint storage. A 200-turn coding session was generating 5.3 GB of state. With Delta Channels, that drops to 129 MB. That's a 40x reduction, and it matters for anyone running agents in production at any volume. The same release added computer use in Fleet and Context Hub for versioned agent context and skills, which suggests LangChain is thinking about the agent as a persistent entity with history, not just a stateless request handler.
The Trajectory launch is the most significant announcement in this space. They're building a platform for using product usage signals and agent traces to continuously post-train large agentic models. Fifteen million in funding, design partners including Clay, Harvey, Decagon, Mercor, and Rogo. The pitch is that post-deployment learning should be infrastructure, not a research project. That's a bet I find credible. The combination of RL-based fine-tuning, real usage signals, and fast iteration cycles is exactly the kind of flywheel that separates production systems from demos.
What's notable is that this maturation is happening at multiple levels simultaneously. At the open-source end, an open-source memory-centric agent built on LangChain and LangGraph got attention for its explicit separation of retrieval, storage, reasoning, and learning. At the enterprise end, Trajectory is commercializing the same insight. The stack is converging.
Key takeaways:
- LangChain Deep Agents v0.6 cuts checkpoint storage 40x via Delta Channels, from 5.3 GB to 129 MB for a 200-turn session
- Trajectory raised $15M to commercialize continuous post-training using real agent traces and usage signals
- Task-harness fit, not just model quality, is increasingly the differentiator in production agent systems
- Post-deployment learning is moving from research aspiration to infrastructure product
Why do I care: If you're deploying agents for any non-trivial use case, the memory and harness design decisions you make now are going to compound over time. Getting the checkpoint, context versioning, and feedback loop right early means you can actually learn from production behavior rather than treating each deployment as a reset.
[AINews] Cognition raises $1B in $26B Series D
New Benchmarks Are Measuring Harder, Messier, Real-World Work
TLDR: DeepSWE, ITBench-AA, and AgingBench represent a wave of evaluation tooling designed to stress-test models on workflows that actually matter in production, not sanitized tasks optimized for leaderboard performance.
Summary: Benchmark design is having a moment. DeepSWE covers 113 tasks across 91 repositories in five programming languages, using a minimalist bash-only harness. The tasks require 5.5 times more code than SWE-Bench Pro and touch an average of seven files. That's closer to real software work than most evaluation setups. The minimalist harness is an interesting design choice: it means model failures are model failures, not harness failures. Shorter prompts, harder tasks, more realistic outcomes.
ITBench-AA from Artificial Analysis and IBM targets something even more specific: Kubernetes incident response in enterprise operations. It's an SRE benchmark, and every frontier model scored below 50%. Claude Opus 4.7 led at 47%, GPT-5.5 at 46%, and GLM-5.1 Reasoning led the open weights group at 40%. Those numbers are humbling. Site reliability engineering is a domain where mistakes have real consequences, and these results suggest that even the best current models are not reliable enough to operate autonomously in that environment. They might be useful as assistants, but the gap to full automation is real.
AgingBench takes a different angle. Instead of measuring capability at a single point in time, it frames deployed agent degradation as a lifespan problem caused by compression, interference, and memory updates. That's a framing I haven't seen articulated clearly before, and it's practically important. If you're running agents in production over weeks or months, understanding how and why they degrade is just as important as knowing their initial performance.
Taken together, these benchmarks are asking harder questions than the leaderboard games that dominated 2024 and early 2025. They're testing long-horizon workflows, domain-specific reliability, and temporal stability. The results are less flattering but more honest.
Key takeaways:
- DeepSWE uses a minimal harness with 113 tasks across 91 repos, requiring 5.5x more code than SWE-Bench Pro
- ITBench-AA shows all frontier models below 50% on Kubernetes incident response, with Claude Opus 4.7 leading at 47%
- AgingBench introduces a lifespan framing for agent degradation caused by compression and memory updates
- Benchmark quality is improving to reflect real-world complexity rather than leaderboard-optimized tasks
Why do I care: The ITBench-AA results are a reality check for anyone pitching autonomous AI for ops work. 47% on a task where you own the incident response process is not a deployment story, it's a supervision story. These benchmarks help calibrate where AI can be trusted to act independently and where it needs a human in the loop.
[AINews] Cognition raises $1B in $26B Series D
ESMFold2 and a Wave of Practical Multimodal Releases
TLDR: ESMFold2 opens protein structure prediction and design at atlas scale, while a cluster of smaller but practical multimodal and OCR releases shows the open ecosystem continuing to move fast.
Summary: ESMFold2 is the science story of the week. It's an open engine for protein structure prediction and design, accompanied by an atlas of 6.8 billion proteins and 1.1 billion predicted structures. That exceeds AlphaFold DB in scale. The reported results on protein interactions and antibodies are strong, and the mechanistic interpretability findings about emergent protein representations add something beyond the benchmarks. This is the kind of release that takes years to fully absorb. The computational biology community is going to be working through the implications for a long time.
On the practical end, several smaller releases are worth tracking. Surya OCR 2 ships as a 650M-parameter model with strong multilingual performance, covering 91 languages and hitting 5 pages per second on an RTX 5090. For document processing pipelines, that combination of speed and language coverage is meaningful. LiteParse v2 rewrites parsing in Rust for up to 100x speedups and adds edge and browser deployment via WebAssembly. That's an interesting direction: bringing document parsing into environments where you don't have a server.
Gemini Embedding 2's white paper describes a native multimodal embedding model supporting unified representations across text, image, audio, and video. A single embedding space for all modalities is architecturally cleaner than separate models per modality, and it opens up retrieval and similarity use cases that were awkward before. NVIDIA's LocateAnything combines Qwen2.5-3B with Moon-ViT for high-speed object grounding, claiming a 10x speedup for dense detection. Hugging Face integrating Roboflow's RF-DETR positions real-time detection and segmentation as a practical tool in the standard ML toolkit.
The common thread across these releases is that capabilities that were research-grade a year ago are now packaged as usable tools. OCR, object detection, multimodal embeddings, protein design. The boundary between "interesting research" and "something I can use in production" keeps moving.
Key takeaways:
- ESMFold2 releases an atlas of 6.8B proteins and 1.1B predicted structures, exceeding AlphaFold DB in scale
- Surya OCR 2 covers 91 languages at 5 pages/second, with strong benchmark performance
- Gemini Embedding 2 offers unified multimodal embeddings across text, image, audio, and video
- LiteParse v2 rewrites parsing in Rust for 100x speedups with WASM support for edge deployment
Why do I care: ESMFold2 is a landmark release for computational biology, full stop. For software developers, the OCR and embedding releases are more immediately actionable. Surya OCR 2 in particular looks production-ready for multilingual document pipelines, and that's a problem many teams have been solving with slower, more expensive tools.
[AINews] Cognition raises $1B in $26B Series D
OpenAI Tightens Codex's Enterprise Controls While Coding Agents Consolidate
TLDR: OpenAI is consolidating Codex onto GPT-5.5 while adding enterprise-grade security and admin controls, as the broader coding agent ecosystem shifts from capability competition to reliability and workflow breadth.
Summary: OpenAI is sunsetting GPT-5.2 and GPT-5.3-Codex in favor of GPT-5.5, which is a clear signal about where they think the product quality bar sits. The new enterprise features are the more interesting story: private MCP connectivity over outbound-only HTTPS, Workload Identity Federation, and expanded Admin API controls covering spend alerts, allowlists, retention policies, and hosted tool management. These are the controls that enterprise security and compliance teams actually ask for before they sign procurement agreements.
The self-improving tax agents case study is worth reading if you have time. The core pattern is using reviewer corrections to automatically generate new evals and then feeding those evals back into fixes. It's a concrete implementation of the post-deployment learning loop that Trajectory is commercializing, but applied to a specific vertical. Tax is an interesting domain because mistakes have real financial and legal consequences, so the rigor of the evaluation approach matters more than in lower-stakes applications.
Claude Code published a reliability and performance update alongside improved tooling for capturing bug reports. The framing of that release is telling: product quality and trust are now the central competitive dimensions, not just raw capability. When Anthropic is shipping updates focused on reliability metrics and feedback collection rather than capability benchmarks, it reflects where the real competition is happening.
The Cua Driver for Windows adds background computer use to Windows agents, which extends the surface area for automation on the most common enterprise desktop OS. Cloudflare's agent platform getting repeated mentions for "fractional computing" economics suggests there's an emerging conversation about cost structure for agentic workloads that doesn't just accept high GPU prices as a given.
Key takeaways:
- OpenAI consolidates Codex onto GPT-5.5 with new enterprise controls including private MCP, Workload Identity Federation, and granular admin policies
- Self-improving tax agent case study shows reviewer corrections feeding directly into eval generation and automated fixes
- Claude Code's reliability update signals that trust and stability are now the primary competitive battleground for coding agents
- Cloudflare's agent platform is drawing attention for cost structure, not just capability
Why do I care: The enterprise security controls OpenAI added are the boring but necessary work of making these tools actually deployable in large organizations. Private MCP over outbound-only HTTPS solves a real network security concern. If you're evaluating coding agents for enterprise use, this kind of infrastructure detail matters as much as the model quality.
[AINews] Cognition raises $1B in $26B Series D
Qwen 27B Surprises Local AI Builders, and the Attribution Debate Around Bonsai Image
TLDR: Qwen's dense 27B model is earning praise for near-Sonnet-class one-shot coding performance on local hardware, while PrismML's Bonsai Image release sparked a debate about attribution practices for quantized model derivatives.
Summary: The Qwen 27B story is a good one for local AI builders. Someone used it via Opencode to generate a near-complete HTML5 Breakout-style game in a single shot from three reference files covering console APIs, gamepad controls, and a TypeScript shader. The output was immediately playable with working controls, sound, metadata, and API integration, requiring only one follow-up for customization and one glitch fix. Multiple commenters placed it roughly on par with GPT-5.2 or Sonnet 4.5 for this kind of web-app one-shot task, which is a meaningful data point for anyone building on consumer hardware.
The context degradation caveat is important though. Users report the model performs best below 64K tokens, degrades noticeably past that, and drops off significantly after 128K. For long-horizon agentic coding tasks, the practical workaround is periodic state summarization, session resets, and reloading from summary files. That's a workflow overhead that shouldn't be necessary in principle, but it works in practice. A benchmark operator found Qwen 27B such an outlier they rechecked their methodology before publishing the result.
The Bonsai Image situation is a different kind of story. PrismML released what they describe as 1-bit and ternary text-to-image diffusion transformers with roughly 3 GB checkpoints and a WebGPU browser demo. That's impressive on its face. But commenters quickly argued that Bonsai Image is primarily a quantized and post-trained derivative of FLUX.2 Klein 4B, with the original model mentioned only in the whitepaper and not prominently in the HF pages or GitHub. The comparison drawn was to releasing a quantization of Qwen and branding it as a new model. That debate matters for the ecosystem. Attribution practices in open-source AI aren't just a courtesy, they're part of how the community sustains the trust that makes sharing work.
On the infrastructure end, someone built a custom Rust inference engine called Cluaiz targeting a 4GB RTX 3050 and reported 66.8 tokens per second with a 4B BitNet model. The community was skeptical about some of the language used to describe it, particularly claims about "direct silicon access" that may just mean ahead-of-time native compilation. The benchmark needs reproducible artifacts to be meaningful, and comparisons to existing tools like llama.cpp would help establish whether this is genuinely novel or just a different packaging of standard techniques.
Key takeaways:
- Qwen 27B dense model shows near-Sonnet-class performance for one-shot web app generation on local hardware
- Context quality degrades noticeably past 64K tokens, requiring state management strategies for long agentic tasks
- PrismML's Bonsai Image release raised attribution concerns about quantized model derivatives and community standards
- Custom Rust inference engine claims 66.8 TPS on a 4GB RTX 3050, pending reproducible benchmarks
Why do I care: Qwen 27B being genuinely competitive with hosted frontier models for specific tasks is a practical win for developers who want local inference without cloud costs or data exposure. The context degradation is a real limitation, but for bounded tasks it's largely irrelevant. The Bonsai Image attribution debate is worth watching because how the community handles these situations sets norms that will matter as quantization and derivative work become more common.