Joshua Opolko

Enterprise AI Pricing and the Inference Infrastructure Gap

By Joshua Opolko · July 16, 2026

Key takeaways

Two structural shifts are happening simultaneously in enterprise AI, and most of the commentary focuses on the wrong one. The billing model change is visible and generates noise. The infrastructure gap it reveals is quieter and much more consequential.

Why is enterprise AI pricing changing?

Enterprise AI vendors built their initial pricing on a per-seat subscription model designed to maximize adoption, not recover infrastructure costs. AI gross margins run 50-60% compared to 80-90% for traditional SaaS (Bessemer Venture Partners, 2025). As enterprise usage has matured and the gap between flat fees and actual compute costs has widened, the economics have forced a structural shift toward consumption-based billing that meters actual token usage.

The transition is already underway. Bain's analysis of 30+ major SaaS vendors in 2025 found that 65% have moved to hybrid pricing (per-seat plus a usage meter), with Anthropic, Salesforce, Adobe, and Zoom all adopting some form of consumption metering. Average enterprise monthly AI spend rose 36% in a single year, from $62,964 in 2024 to $85,521 in 2025 (CloudZero State of AI Costs, 2025). That trajectory doesn't flatten on its own.

The AI industry's per-seat era was deliberate. Vendors needed adoption velocity and were willing to price below cost to get it. Now that usage patterns are understood, pricing is converging on what the compute actually costs, plus margin. This is predictable SaaS lifecycle behavior. What's less predictable is what enterprises have to build in response.

What does consumption billing mean for enterprise AI governance?

When pricing shifts from flat subscription to metered consumption, the governance problem shifts from budget line items to usage management in real time. Non-technical workers cannot optimize token spend. They don't understand why the same task costs different amounts depending on prompt design, model choice, and context window size. They can't be expected to. Only 22% of finance executives can currently tie AI spend to business outcomes (CloudZero, 2025), and 57% still track AI costs via spreadsheets.

The only workable response at any real organizational scale is centralization: IT-managed agent fleets that expose AI capabilities as governed tools rather than open API access. Workers interact with purpose-built agents; the agents interact with models; IT controls the spend at the infrastructure layer. This is already the pattern for technical teams, and consumption billing is forcing it on everyone else. There is also a compliance pressure that often goes unacknowledged: the terms of service for consumer AI plans explicitly prohibit business use. Companies that reimbursed employees' personal subscriptions were already in breach. Legal teams that examined the question closely advised moving to enterprise contracts regardless of cost. Consumption billing makes the sticker shock acute and public, but the need for proper enterprise licensing was never optional.

Gartner forecasts that 40% of enterprise applications will feature task-specific AI agents by end of 2026, up from under 5% in 2025. McKinsey found that 23% of organizations are already scaling agentic AI systems in production, with another 39% in active experimentation (McKinsey State of AI, November 2025). The organizational shift from individual model access to agent fleets is not a future prediction. It's in progress.

The irony is that in building the internal governance layer to control costs, every enterprise locks itself in more deeply. Internal prompt libraries, usage analytics, routing configurations, and agent definitions are organizational artifacts with real value. That value lives inside the organization, not at the vendor. The pricing cliff is inadvertently doing the AI companies' product work for them.

What is the real cost problem at agent fleet scale?

The dominant cost driver in individual AI use is prompt complexity: how much context you send, which model you use, how long the response is. In agent fleet deployments, a different cost driver emerges that individual usage never surfaces: redundant computation. When multiple agents independently research, analyze, and synthesize across a shared knowledge domain, the same underlying inference work gets performed repeatedly with no mechanism for sharing results.

Consider a legal team running a fleet of agents for contract review, regulatory research, and precedent analysis. Agent A retrieves and summarizes the relevant case law on a particular clause Monday morning. Agent B, running a parallel task for a different lawyer on the same clause Thursday, starts from scratch. The organization pays for the same tokens twice. Scale this across dozens of agents and hundreds of overlapping tasks, and redundant computation becomes the primary cost driver, not the complexity of any individual inference.

The research on query similarity makes this concrete. A 2024 study (Gill et al., arXiv:2403.02694) found that approximately 31% of ChatGPT queries exhibit semantic similarity to previously submitted requests. A separate semantic caching implementation (arXiv:2411.05276) achieved cache hit rates of 61.6-68.8% across query categories, reducing API calls by the same margin with accuracy above 97%. Anthropic's own prompt caching pricing reflects this: cached reads cost $0.30 per million tokens versus $3.00 per million for fresh inference, a 90% reduction.

The math is clear. The infrastructure to act on it at agent-fleet scale, across an organization where agents don't share a cache, doesn't exist yet in any meaningful form.

The problem isn't limited to API-billed inference. Enterprises running on-premise GPU clusters or self-hosted models don't pay per token, but they do pay for power, cooling, and hardware utilization. A redundant inference job on a local model consumes the same GPU cycles regardless of billing model. At fleet scale, that translates to real electricity costs, thermal load, and contention with other workloads on shared hardware. The cost unit changes from dollars-per-million-tokens to kilowatt-hours and GPU-hours, but the underlying waste is identical.

What is dontguess.ai building to solve this?

dontguess.ai is an event-sourced exchange for cached AI inference results. The core premise is that agents should be able to buy pre-computed results from a shared pool rather than recomputing from scratch. Sellers submit completed inferences to the exchange and receive 70% of declared token cost in scrip immediately, plus a 10% residual on every future resale of their result. Buyers describe tasks semantically, set budgets in scrip, preview results before committing, and pay less than fresh inference when there's a match. The exchange retains 20% as an operator margin.

Several design decisions here are worth examining closely because they reveal a builder thinking carefully about failure modes, not just happy paths.

Event sourcing on Nostr

The exchange uses Nostr, the open decentralized messaging protocol, as its transport and identity layer. Exchange operations (put, buy, match, settle) are agent-signed Nostr events. The entire state of the exchange is derived from a replay of a signed event log rather than from a central database. This means any participant can independently verify the state of the exchange from first principles. There is no central authority to trust, and no single point that can falsify the ledger.

For a two-sided marketplace where sellers need assurance they'll receive their scrip and buyers need assurance they're getting what they paid for, this is a structurally sound foundation. It also means the system is auditable without a custodian.

The scrip economy

Scrip is a closed currency. It cannot be cashed out. It can only be used to purchase cached inference within the exchange. This is the most important design decision in the entire system, and it's one that most early token economies get wrong.

A redeemable currency creates a speculative layer on top of the utility layer. Participants start optimizing for scrip appreciation rather than for cost reduction. The scrip market drifts away from the underlying product. By making scrip non-redeemable, the system ensures that the only reason to acquire it is to consume cached results, which is exactly the behavior the exchange is trying to incentivize. A 10% matching fee is burned on each sale, creating mild deflationary pressure that rewards sellers who generate high-quality, frequently-cited results.

Semantic matching

The matching engine uses all-MiniLM-L6-v2, a 384-dimensional sentence embedding model, with TF-IDF as a fallback. This is a pragmatic choice. The MiniLM model is small enough to run cheaply at query time, well-benchmarked for semantic similarity tasks, and widely deployed in production semantic search systems. TF-IDF fallback ensures the system degrades gracefully when the embedding model is unavailable or returns low-confidence results. Dynamic pricing adjusts based on demand signals (10% per distinct buyer), temporal decay over a 60-day freshness curve, seller reputation (0.8-1.2x multiplier), and content size.

Two-tier architecture

The system has a deliberately low-friction entry path. In individual mode, agents communicate over a local IPC socket with no admission requirements and no scrip enforcement. A developer can run it locally without any account, relay, or coordination overhead. In team mode, agents sign events with per-agent secp256k1 keys and communicate with a relay, with an operator allowlist controlling admission and scrip accounting enforced across the fleet.

This is good product design. The individual tier lets builders understand the system's value before committing to the team infrastructure. The team tier is where the enterprise use case lives: a shared pool of agents that can trade inference results internally rather than recomputing across the fleet.

The compliance question

One genuine risk deserves honest examination. Anthropic's commercial terms prohibit customers from using the API to "resell the Services." The counterargument is straightforward: Anthropic explicitly grants customers ownership of their outputs, and trading something you own is not the same as reselling API access. The complication is that dontguess.ai's entire value proposition is letting agents avoid paying for inference by substituting cached results. Anthropic could plausibly read that as monetizing their inference without paying per call, regardless of whether scrip rather than cash changes hands.

dontguess.ai is model-agnostic, and that matters more than it might seem. On-premise and local model deployments have compute and power incentives to avoid redundant inference even without per-token billing, and for those deployments the TOS question doesn't apply at all. For teams using metered API providers, the compliance question is real for any deployment trading API-billed outputs at scale. Written clarification from the relevant provider before production is the responsible path.

The enforcement picture is worth understanding separately from the legal question. Cache hits generate no API call, so they're invisible to providers by definition: Anthropic sees reduced volume but that's indistinguishable from efficiency gains or model switching. Local IPC installs produce no external network traffic at all. For shared or cloud-hosted relay instances, Nostr's pseudonymous key design matters: agent keys are secp256k1 keypairs generated locally with no required mapping to an API account or enterprise identity. A relay participant, including a provider running a monitoring node, can observe event content and trading patterns but cannot link an agent key to a specific API customer without an external identity anchor that isn't in the protocol. A provider could seed distinctive honeypot outputs and confirm their content is circulating in an exchange, but attributing that to a specific customer account would require correlating Nostr keys to API keys through some other means. The grey zone stays grey partly because enforcement is technically difficult even when the rule is clear.

Could dontguess.ai become a major platform?

The value of an inference exchange scales nonlinearly with agent density. Early in deployment, most queries miss the cache and get computed fresh. As inventory builds, hit rates compound. A team fleet with high internal query overlap could reach 60%+ cache hit rates relatively quickly, matching the academic benchmarks cited above. At that point, the economics are compelling: the same inference work costs 90% less on a cache hit than on a fresh call.

The Nostr-based architecture creates a structural moat that most infrastructure plays lack. Because the state is derived from a signed event log rather than a proprietary database, the exchange is permissionless and independently verifiable. A large cloud provider building a competing product natively into their enterprise tier would, by design, build a proprietary, centralized system. dontguess.ai's decentralized approach is complementary to any vendor's stack, not dependent on any single provider's cooperation.

The risk is the two-sided cold start: an exchange with no inventory is worthless to buyers, and sellers won't supply results without buyers. This is the standard marketplace problem, and it doesn't get solved by good engineering alone. But the team tier architecture provides a partial solution: a single organization running its own fleet generates both supply and demand internally, and can get value from the system before any cross-organization trading exists.

As of July 2026, the project has 682 commits and is at v0.7.0, which signals sustained engineering effort rather than a prototype. The code is primarily Go (91%), a language choice that reflects a builder prioritizing performance and operational simplicity over developer experience shortcuts. Gartner projects that AI agents will displace $234 billion in traditional SaaS spend by 2030. The infrastructure layer for managing that fleet's compute costs doesn't exist yet at scale. dontguess.ai is one of the earliest coherent bets on what that layer could look like.


Frequently asked questions

How can enterprises reduce LLM API costs?

Three approaches have demonstrated measurable cost reductions. First, IT-managed agent fleets replace open API access, preventing ungoverned usage that inflates spend. Second, semantic caching serves 61-69% of agent queries from cache at 90% lower cost than fresh inference (Anthropic cache reads: $0.30 vs $3.00 per million tokens). Third, inference exchanges like dontguess.ai let agent fleets trade cached results internally, eliminating redundant computation across teams without paying for the same inference twice.

Why are enterprise AI vendors moving from per-seat to consumption pricing?

AI infrastructure carries gross margins of 50-60%, significantly below the 80-90% typical of traditional SaaS. Per-seat pricing was a deliberate subsidy to drive adoption. As enterprise usage data has matured and actual compute costs are understood, vendors are repricing toward consumption models that reflect the real cost of inference. Bain's 2025 analysis found 65% of major SaaS vendors have already adopted hybrid per-seat plus usage metering.

What is redundant computation in AI agent fleets?

Redundant computation occurs when multiple agents independently perform the same inference work without sharing results. In individual AI use, query overlap is low. In agent fleets where many agents work across a shared knowledge domain, the same research, summarization, or analysis gets repeated by different agents at full token cost each time. Research shows 31-69% of LLM queries exhibit semantic similarity to prior queries, meaning a large fraction of agent fleet compute is potentially cacheable.

What is inference caching and how much does it reduce AI costs?

Inference caching stores the results of previous AI computations and serves them to semantically similar future queries without re-running the model. Anthropic's prompt caching prices cache reads at $0.30 per million tokens versus $3.00 per million for fresh inference, a 90% reduction. Semantic caching implementations have achieved cache hit rates of 61-69% in production-scale studies, with accuracy above 97%. The cost savings at agent fleet scale are substantial.

How does dontguess.ai work?

dontguess.ai is a token-work exchange for AI agents. Sellers submit completed inferences and receive 70% of declared token cost in scrip immediately, plus a 10% residual on resales. Buyers describe tasks semantically, preview results before committing, and pay less than fresh inference. The exchange uses Nostr for decentralized identity and event signing, all-MiniLM-L6-v2 embeddings for semantic matching, and a closed scrip currency that can only be redeemed for cached inference, preventing speculation.

What makes dontguess.ai's architecture different from standard inference caching?

Standard inference caching is centralized and within a single system. dontguess.ai is a decentralized exchange where any agent can be both a supplier and consumer of cached results. The Nostr-based event log means the entire exchange state is auditable and reproducible from a signed message history, with no central database to trust. The closed scrip economy ensures participants optimize for result quality and cost reduction rather than currency speculation.


Last updated: July 16, 2026