Urgent.News

What's breaking now, across thousands of outlets.

AI

Why this blog exists

Originally published on Loop & Retry — field notes on building LLM agents that survive production. Most writing about LLM agents is either a demo that works once on stage or a thread promising the singularity by Q3. This blog is for the gap in between: the part where you ship an agent, it survives contact with real inputs for a while, and then it does something expensive and stupid at 3 a.m.…

This blog, Loop & Retry, serves a specific purpose in the world of building language model (LLM) agents for production. Many existing writings on the subject are either one-off demos that work in a single instance or posts predicting a technological singularity within a few months. This blog aims to fill the gap between these two extremes, focusing on the more realistic scenario where an agent is shipped and deployed, only to encounter unexpected issues later on.

The author's main concern is the tendency for agent content to be mistaken for a functioning system when in fact it's only a working demo. A demo only needs to succeed once, while a system must be able to handle thousands of potential failures, including malformed inputs, rate limits, tool errors, and retries that may exacerbate the problem.

The underlying principle guiding the blog is straightforward: every post should demonstrate the version that fails and the subsequent fix. All numerical data should be measured or cited, without relying on fabricated benchmarks. If a claim cannot be validated through reviewing the actual code, it should not be published.

The blog is structured around six key pillars: context engineering, tool design, evaluations, cost and latency, failure modes, and agent architectures. The first area to be explored in depth is retry budgets, specifically why a 20% per-step failure rate quietly leads to a doubling of token costs. Upcoming posts will aim to cover these topics approximately once or twice a week, with new content published via RSS for subscribers interested in this niche area of LLM agent development.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in AI

Mix and Match: One Agent, Three Clouds, One Protocol

This article provides a step by step comparison of the same research agent built three times, on Google ADK, AWS Strands and Microsoft Agent Framework, all three speaking A2A to one coordinator.

  • Same research agent deployed on Google ADK, AWS Strands, and Microsoft Agent Framework
  • A2A protocol serves as common language for agent interoperability
  • Comparison project identifies differences between three hyperscaler agent frameworks

Model Cascade: making LLM classification cheaper

Many LLM workloads are classification tasks. This can get expensive, and I believe it is going to become more and more important, especially with the proliferation of software factories.

  • Model Cascade uses a cheap proxy model and an expensive oracle model
  • BARGAIN paper shows up to 86% cost reduction on various datasets

More from Sunday 23 August →