firehose> #llmops

Agentic Simplicity

The thesis of agent engineering: find the simplest solution possible and add complexity only when it demonstrably improves outcomes. The most successful production agent systems are built from simple, composable patterns, not complex frameworks. For many applications a single optimized LLM call (with retrieval and in-context examples) is enough — agentic systems trade latency and cost for task performance, so the tradeoff has to actually pay.

The corollary for frameworks: they help you start by hiding low-level plumbing (LLM calls, tool parsing, chaining), but the same abstraction layers obscure the underlying prompts and responses, make debugging harder, and tempt you to add complexity a simpler setup wouldn't need. Start from the LLM API directly; if you adopt a framework, understand what it does underneath — incorrect assumptions about what's under the hood are a common source of error.

Claims


Linked from