Apple is in early settlement talks with the DOJ over its iPhone antitrust case
Apple is in early settlement talks with the DOJ over its iPhone antitrust case

Apple and the US Department of Justice are in early discussions about settling the 2024 antitrust lawsuit that alleges Apple violated competition law through its iPhone ecosystem, Bloomberg reported on Thursday. Apple has made multiple offers this year…

EU Orders Google to Open Android to AI Rivals and to Share Search Data

The European Union is using its Digital Markets Act to crack down on big tech companies that aren’t being fair.

Uncategorized
This super-bright Xgimi Horizon smart projector packs built-in Harman Kardon audio — and it’s $370 off
This super-bright Xgimi Horizon smart projector packs built-in Harman Kardon audio — and it’s $370 off

Skip the 4K tax with this 1080p Android TV projector featuring 2200 ANSI lumens and Harman Kardon speakers for under $530.

The Perseid meteor shower starts this week. Here’s why you should look up now
The Perseid meteor shower starts this week. Here’s why you should look up now

The Perseid meteor shower begins on July 17 alongside two others, making “shooting stars” likely any night this month and next.

Healthier recipes for your Ninja Creami — how I eliminated artificial sweeteners and still made the richest, creamiest ice cream of the summer
Healthier recipes for your Ninja Creami — how I eliminated artificial sweeteners and still made the richest, creamiest ice cream of the summer

The main reason to buy a Ninja Creami is so that you can make frozen treats that are healthier than what you can buy in a store.

Why Most Entrepreneurs Lose Their Day Before 9 A.M.

Daniel Krynzel, founder of Big Balls Brotherhood, believes the greatest threat to an entrepreneur’s performance isn’t a lack of time. It’s losing control of their attention before the workday even begins.

Tesla made a $225 balance bike for toddlers. It has no motor, no pedals, and is already sold out.
Tesla made a $225 balance bike for toddlers. It has no motor, no pedals, and is already sold out.

Tesla launched a $225 balance bike for children aged 2 to 5. It has no motor, no pedals, no brakes, and is powered entirely by toddler legs. The lightweight white magnesium frame comes with a five-way adjustable seat, the Tesla wordmark on the side, an…

Which Cinema Format Is Best For Christopher Nolan’s ‘The Odyssey’?

As The Odyssey lands, everyone is going IMAX 70mm crazy. But as many have noted, these are rare. So, if there isn’t one near you, which other format should you choose?

Meta Used AI to Illegally Fire Pregnant and Disabled People, Lawsuit Alleges

Former Meta employees allege the company penalized them for taking medical leave.

Uncategorized
Agents think in milliseconds, legacy infrastructure doesn’t. LinkedIn, Walmart and Zendesk shared how they closed the gap at VB Transform 2026

Legacy infrastructure, not the models themselves, is what’s actually slowing AI agents down. That was the shared conclusion of three infrastructure leaders — from LinkedIn, Walmart, and Zendesk — at VB Transform 2026.

The panel brought together Animesh Singh, senior director of AI platform and infrastructure at LinkedIn, Desiree Gosby, SVP of corporate technology services and technology strategy at Walmart, and Sami Ghoche, VP of applied AI at Zendesk, each describing what actually broke when they moved agents from pilot to production. Each arrived at the same conclusion from a different starting point: None of the bottlenecks they hit were model problems.

What tied their answers together was a shared premise: most enterprise infrastructure was built for how humans work, not for how agents work. The gap between those two speeds is where the real engineering happened.

Gosby put it plainly when asked what she’d learned scaling agents inside Walmart’s own workforce. The goal, she said, is to make sure “engineering doesn’t once again become the bottleneck for what it is we’re trying to do.”

Where the bottleneck actually was

Each company hit a different version of the same wall: infrastructure designed for how people work doesn’t hold up once agents are doing the work instead.

At LinkedIn, the first bottleneck wasn’t a model, it was Kubernetes, which assumes containers spin up on demand, a process that takes seconds. Singh said that’s too slow for agents. The fix was moving from on-demand provisioning to pre-provisioned pools of containers that swap agentic workloads in and out in real time.

A second, harder problem surfaced once LinkedIn let agents control their own orchestration. A five-point evaluation system looked clean, but hallucination kept showing up anyway. Singh said the issue was structural, an LLM evaluating another LLM’s output shares the same failure mode as the thing it’s evaluating. 

“We built our own harness, our own control flow, and pushed the LLMs to the leaf instead of them orchestrating the loop,” Singh said. Roughly 80% of the workflow is now scripted, deterministic code, with LLMs used only where reasoning is required, and each step’s evidence is committed to disk before the system moves on.

Walmart’s bottleneck came from success. An agent harness put directly into employees’ hands went viral internally, and what Gosby called “citizen developers” began building their own agents to solve problems that once required a formal engineering roadmap. The upside was real innovation. The downside was duplication, dozens of overlapping agents with no coordination. The fix wasn’t reining in the harness, it was building governance to spot duplication, promote the best version of an agent, and get it into production without engineering becoming a chokepoint.

Zendesk hit its bottleneck from the data side. Ghoche, who joined through Zendesk’s acquisition of Forethought, which closed in March 2026, described sitting on what he called a public figure of 20 billion customer conversations in Zendesk’s repository. The instinct is to hand that history to a large language model with a big context window and let it generate the agents a business needs. Ghoche said that doesn’t work. “You can’t really do that, so instead you have to really invest in the underlying data pipelines and all the data infrastructure that comes with that,” he said.

The role of open source

On open source, all three leaders landed on a similar instinct: own what you can, and lean on frontier labs only where they still have a clear edge.

Ghoche said his own view is that most enterprises would prefer to own their models and infrastructure wherever that’s possible, and that reasoning is what drives Zendesk’s own approach. The exception is frontier reasoning work, where the labs still lead, though he said that slice of use cases is shrinking relative to everything else enterprises now do with AI.

LinkedIn’s answer was to build two subsystems specifically for independence. The first is what the company calls an AI gateway, a single interface that every outbound call to a model runs through regardless of provider. The second component is a memory subsystem built to hold context independent of any model provider.

“Every single outbound call going to an LLM, whether it’s on a public cloud or on-prem in our own data centers, follows the same semantics, the same API calls. We can quickly switch between different providers,” Singh said. 

Walmart built its own internal gateway to stay vendor agnostic across three workload types: fully deterministic workflows, planner-and-reasoner workflows for open-ended tasks, and a hybrid of the two. Compliance-heavy work stays deterministic by design; governance, security and evaluation run through the gateway regardless of which model is on the other end. Gosby said the choice between a frontier model and an open-weight model comes down to whichever is most effective for the specific workload, not a fixed policy.

Advice for the modernization journey

Three pieces of advice came up directly, each tied to the wall a leader had already hit.

Invest in evals before anything else. Ghoche called it the thing common to every use case, internal or customer facing. 

“The thing that’s common to all of these is evals. It’ll force you to break the problem down, and once you have a robust set of evals, you can move a lot faster,” he said, 

Own your agent harness from day one. Gosby’s advice was to put the AI harness directly in employees’ hands early, paired with the infrastructure to monitor what it produces. 

“It will unlock a huge amount of innovation,” she said.

Build for model and context independence. Ensuring flexibility is critical for success.

“Build for independence, whether it’s a frontier model of today versus an open source model of tomorrow,” Singh said. “Keep that context within your enterprise so that you can reuse it when you ship the model or the harness tomorrow,” Singh said.