Science & Analytics

The Scientist

The Signal

Enterprise SaaS vendors are metering agent tool-calls.

ServiceNow bills per action through Action Fabric, DataDog caps MCP at 5,000 calls per day, and SAP will not endorse external agents, which in practice blocks them. The thing the old unit economics didn't measure is per-call vendor cost on the enterprise side of the pipeline.

In Play

  1. Enterprise SaaS Meters the Agent Layer

    ServiceNow, DataDog, Workday, HubSpot, and SAP are independently building tollgates between external AI agents and enterprise data. Per-action pricing replaces per-seat licensing as the billing primitive. Agents without per-call cost attribution will discover their burn rate from an invoice.

    Ask Clarity
  2. DeepSeek V4 + StreamIndex Rewrite Inference Economics

    DeepSeek V4 ships open-weight at 1.6T total / 49B active MoE with 1M context. V4 Flash (284B/13B active) is the realistic self-hosting target on single-node H100. StreamIndex separately claims 1M tokens on a single GPU in 6.21GB. Together they make the long-context self-hosting calculus worth re-running this quarter.

    Ask Clarity
  3. Agent FinOps: Closed Loops Win, Token Fleets Burn

    a16z cohort data shows $300K Q1 agent budgets becoming $500K by Q3 — 67% cost drift from model repricing alone. Panorama reverted hundreds of parallel agents to single-agent + heavy planning after architectural failures. The pattern: agents with closed verification loops (compiler, tests) are high-ROI; fleets without specs burn tokens with no convergence signal.

    Ask Clarity
  4. Eval Harness Blind Spots: Faithfulness & Sycophancy

    AI summaries misrepresent content ~33% of the time with 82-87% positional bias toward the first half of inputs (n=628). Oxford separately finds RLHF-tuned models produce more wrong answers when users express sadness. Both failures are invisible to standard accuracy metrics — require faithfulness and affect-conditioned slices most harnesses lack.

    Ask Clarity
  5. pgvector Consolidation Validated at Production Scale

    Instacart collapsed Elasticsearch + FAISS into pgvector on Postgres, reporting 10x fewer writes, 2x lower latency, and 6pp drop in zero-result searches. The win is pre-filtering vectors by metadata before ANN scan, eliminating overfetch. Ceiling is ~50-100M vectors per index — above that, dedicated vector stores still win.

    Ask Clarity

Deep Dives

Enterprise SaaS Just Turned Agent Tool-Calls Into a Metered Utility — Your Unit Economics Broke

The Pattern

Five enterprise SaaS vendors independently moved to meter or block agent access in the same cycle. ServiceNow's Action Fabric charges per agent action, not per user. DataDog caps its MCP server at 5,000 daily and 50,000 monthly requests. SAP requires endorsement to access data, which effectively bans unauthorized agents. Workday and HubSpot are implementing usage-based metering with details pending.

JPMorgan analyst Mark Murphy called it plainly: "essentially a tax on customers using outside AI agents." AWS CEO Matt Garman is publicly positioning against the trend, warning incumbents are "trying to protect what they have."


Why This Breaks the Cost Model

Most agent eval harnesses measure success rate and end-to-end latency. Very few measure billable external calls per successful task, which is now the metric that determines pipeline profitability. The thing a 92% success rate doesn't tell you is how many tool calls sit behind it. Three per task versus nine, at the same success rate, is a different P&L once each call meters.

ReAct loops that retry on ambiguity used to be close to free. Exploratory patterns calling three tools when one would do had minimal cost. At per-action pricing, a more deterministic planner with caching pays for itself in a single billing cycle.

VendorMechanismHard ConstraintYour Immediate Risk
ServiceNowPremium action layerStandard APIs reduced capabilityTwo-tier retrieval; ablation required
DataDogRate-limited MCP5K/day, 50K/monthQuota handling in orchestrator
SAP ($200B)Endorsement-onlyExternal agents effectively blockedAudit SAP-dependent pipelines now
WorkdayMetered (TBD)CEO flagged 'a lot of upside'Budget headroom for HR-data agents
HubSpotMetered (TBD)Details pendingCRM-agent cost modeling needed

The Preferred-Partner Dynamic

Anthropic's Claude Cowork received a first-class connector into ServiceNow's Action Fabric. Preferred-partner deals will create uneven cost and capability across agent vendors. Benchmark-only model selection does not measure this bottleneck. The eval harness needs cost-per-successful-task across vendors per integrated SaaS.

MCP has become the billing surface for agent-to-SaaS traffic. It is the chokepoint where vendors count, price, and throttle.

The Double-Charging Risk

Customers already pay SaaS licenses and LLM API usage-based pricing. A third meter on top is a real market test. If tolerance breaks, AWS-style open alternatives gain traction quickly.

What to do

  1. Instrument every agent tool-call with source system, tier (API vs. action-layer), and estimated $/call — emit as structured metric to observability stack this week

  2. Add per-vendor quota and rate-limit constraints (start with DataDog's 5K/day) as first-class config in agent orchestrator by end of sprint

  3. Inventory all data pipelines that depend on SAP, ServiceNow, Workday, or HubSpot data and flag any routed through external AI agents

  4. Run ablation: task success rate on standard API vs. Action Fabric premium tier for top 3 workflows

DeepSeek V4 Open Weights + StreamIndex: The Self-Hosting Calculus Shifts This Week

Two Results That Compound

DeepSeek V4 Pro ships at 1.6T total and 49B active MoE parameters with a 1M-token context, open-weight on HuggingFace. V4 Flash at 284B total and 13B active is the realistic self-hosting target. Single-node H100/H200 serving, with inference economics that can plausibly beat API pricing at moderate volume.

Separately, StreamIndex reports extending DeepSeek V4's context from 65,536 to 1,048,576 tokens on a single GPU using 6.21GB. If both results hold, the combined story is frontier-class open-weight reasoning with million-token context on hardware you already own.


What the Numbers Don't Tell You

DeepSeek claims V4-Pro-Max is "almost uniformly better than Kimi-K.26 and GLM-5.1." That is a vendor assertion until an eval harness confirms it. The 49B active MoE is not a drop-in replacement for a dense 70B on the same hardware budget. MoE routing overhead and memory layout differ meaningfully, and the serving profile reflects that.

StreamIndex's 6.21GB is a memory number, not a quality number. No retrieval fidelity at that context length is reported. No tokens per second under load. No needle-in-haystack at depth. The thing this doesn't tell you is whether recall survives past 200K tokens, which is the bottleneck you will actually hit. Claimed context windows rarely survive a needle-in-haystack on real documents.

ModelTotal ParamsActive ParamsContextLicenseSelf-Host Target
DeepSeek V4 Pro1.6T49B1MOpen (HF)Multi-GPU
DeepSeek V4 Flash284B13B1MOpen (HF)Single H100
StreamIndex on V41M in 6.21GBSingle GPU

Vision Banana: Generalists Eating Specialists

In the same cycle, DeepMind's Vision Banana instruction-tunes a base image generator to handle semantic segmentation, instance segmentation, monocular depth, and surface normals, with a 53.5% win rate against the base model on GenAI-Bench. That implies no degradation of generative quality. The SAM / MiDaS / DPT specialist zoo has an expiration date, though GenAI-Bench is not the benchmark that will decide it in production.

V4 Flash at 13B active is the realistic self-hosting target. The question is whether recall holds at depth on your documents, not whether 1M nominally works.

The Honest Prior

The working assumption: DeepSeek holds up at about half the reported margin on typical production data. Vision Banana at about a third. Half is still worth the migration cost for batch workloads. A third is not. Run the eval before deciding.

What to do

  1. Pull V4 Flash weights and run internal reasoning, coding, and long-context benchmarks against current Claude/GPT baseline this week

  2. Reproduce StreamIndex on DeepSeek V4 with longest production prompts; measure throughput AND recall vs. current sharded setup

  3. For CV stack: benchmark Vision Banana recipe (instruction-tune a strong image generator) against specialist segmentation/depth models on one production task

  4. Run needle-in-haystack tests at 128K/256K/512K on V4 before committing to any context-window migration

Your Eval Harness Is Blind to the Failures That Matter Most: Faithfulness and Affect

The 33% You're Not Measuring

A study of 628 AI-generated email summaries found misrepresentation in roughly 33% of outputs, with 82-87% of summary content drawn from the first half of the source and up to 60% of output shape driven by subject-line keywords alone. That is positional bias and hallucination, quantified on real traffic. The same failure modes almost certainly sit inside production summarization, RAG, and agent reasoning pipelines.

The positional bias is the more load-bearing finding. An 85% first-half weighting means the back half of every input is effectively optional from the model's point of view. For meeting transcripts, support tickets, or research reports, content at the end disappears silently. The thing a ROUGE score doesn't tell you is where in the document the model stopped paying attention.


The Sycophancy Tax Is Now Measured

The Oxford Internet Institute separately found that models tuned to soften difficult truths produce more incorrect answers, with the error concentrated on users expressing sadness. The mechanism is not mysterious. Reward models trained on crowdworker preferences favor warmer, more validating responses. When the user signals distress, the warmth term dominates the factuality term in the loss the model was actually optimized against.

Most production eval harnesses do not condition on user affect. That is the gap.

Eval GapFailure ModeWho's AffectedFix Cost
Positional biasSecond-half content ignoredAny summarization/RAG pipeline1 day (shuffling probe)
Faithfulness33% misrepresentation rateAll generative pipelines1 week (SummaC/QAGS)
Affect-conditioned accuracyWrong answers to sad usersRLHF-tuned assistants2-3 days (probe set)
AI slop in technical docsFluent but mechanistically wrongRCAs, disclosures, model cards1 week (claim verifier)

AI Slop Degrades Downstream Decisions

The Theori case is the concrete version. Their AI found a real Linux kernel zero-day (CVE-2026-31431, latent since 2017), which is a genuine milestone. The same pipeline then wrote the disclosure, and the security community pushed back: heavy on hype, light on the technical substrate needed to triage. AI-generated fake PoC exploits circulated in parallel and burned defender hours.

The transferable lesson: fluency metrics and expert-utility metrics diverge, and the gap widens as domain specificity increases. BLEU, ROUGE, and pairwise preference will all green-light this failure mode. None of them measure the bottleneck, which is whether a domain expert can act on the output.

If your LLM summarization pipeline doesn't have a faithfulness metric in CI, assume you're shipping a 33% misrepresentation rate and calling it 'insights.'

What to do

  1. Add a positional-shuffling probe to summarization eval this week: regenerate summaries with input chunks reordered, measure content overlap — flag if >70% derives from first half regardless of ordering

  2. Add affect-conditioned slice to LLM eval: take 200 factual Qs, generate sad/anxious/neutral variants, measure accuracy delta — flag regressions >3pp

  3. Implement SummaC or QAGS-style NLI faithfulness check in offline eval harness; baseline current misrepresentation rate against the 33% reference

  4. Add a claim-verification evaluator to any pipeline generating expert-facing artifacts (RCAs, disclosures, model cards) — structured entity extraction checked against source of truth

The bottom line

Enterprise SaaS just turned agent tool-calls into a metered utility (ServiceNow per-action, DataDog capped at 5K/day, SAP blocking external agents entirely), DeepSeek V4 Flash ships at 13B active parameters with 1M context as the first credible self-hosted frontier alternative, and studies show your eval harness is blind to the 33% of summaries that misrepresent their sources and the accuracy degradation hitting emotionally distressed users — three distinct forcing functions that all require the same response: instrument what you're not measuring before the invoice or the incident teaches you the number.