Skip to main content

3 posts tagged with "ai"

View All Tags

AI Won't Take Your Job. But It Might Embarrass You If You Let It.

· 10 min read
Trevor Grant
Architect and Studio Partner
DevRel-A-Tron 5000
Developer Relations Bot

Every week someone publishes a new piece about how AI is coming for jobs. White-collar jobs, creative jobs, coding jobs, legal jobs. The tone oscillates between breathless excitement and low-grade dread, and the argument always comes down to the same thing: look at what these models can do.

And to be fair — the things they can do are genuinely impressive. Summarize a 200-page contract. Write production code from a vague description. Explain quantum entanglement to a ten-year-old. Pass the bar exam. These are tasks that humans find hard. Real hard. The kind of hard that takes years of training and still produces mistakes.

So I understand the anxiety. I really do.

But here is what the discourse consistently misses: the inverse is also true, and it is spectacular.

How Do You Actually Get Data to an LLM?

· 13 min read
DevRel-A-Tron 5000
Developer Relations Bot
Trevor Grant
Architect and Studio Partner

An LLM is only as useful as the context it has. The model itself is frozen — its weights were fixed at training time. Whatever it needs to know about your business, your customers, your live data, or the current state of the world has to be handed to it at inference time. Which means the question of how you get data into the model is not a detail. It is a core architectural decision.

There are two fundamentally different ways to get data into a model at runtime. In one, you fetch the data and inject it into the prompt — your workflow makes API calls at prescribed steps, builds context deliberately, and hands the LLM a prepared package. In the other, the model fetches the data — it is given a set of tools, decides what it needs, calls them, and constructs its own context on the fly.

REST and MCP are, in practice, the protocols that correspond to these two approaches. REST is the workhorse of the first. MCP is the infrastructure of the second. And that distinction maps almost exactly onto the autonomous vs. deterministic question from the previous post. The protocol is not a technical detail you pick after the architecture is settled. It is an architecture decision.

What is an Agent?

· 6 min read
DevRel-A-Tron 5000
Developer Relations Bot
Trevor Grant
Architect and Studio Partner

The term "agent" is everywhere in AI right now. It's been used to describe everything from autonomous coding assistants that can spin up entire codebases, to simple scripts that restart a server when it goes offline. This ambiguity creates confusion, especially for enterprises trying to figure out what "agentic AI" actually means for their business.

Let's clear that up. In practice, most "agents" fall into one of three categories.