Previous Article
Axios Timeouts and Cancellation: What the Default Actually Does
3 May 2023
Generative AI stopped being a demo somewhere around 2024. By 2026 it is infrastructure — the same way a database or a payment gateway is infrastructure. Companies are no longer asking whether to use it; they are asking which parts of their product should be rebuilt around it, and what happens to them if a competitor gets there first.
This post is a practical look at what Gen AI actually is today, why 2026 is the year it becomes non-optional, and what a development team should do about it.
Generative AI refers to models that produce new content — text, code, images, audio, video, structured data — rather than only classifying or predicting from a fixed set of labels. The category has widened considerably in the last two years:
That last one is the real story. The shift from "AI that answers" to "AI that does" is what turns a novelty into a line item on a budget.
The cost per million tokens has fallen by more than an order of magnitude since the first wave of large models, while quality has gone up. Workloads that were prohibitively expensive to automate in 2023 — classifying every support ticket, summarising every sales call, reviewing every pull request — are now cheap enough to run continuously rather than as a monthly batch job.
Early models could hold a few pages. Current frontier models hold a million tokens — roughly an entire codebase, a year of support tickets, or a full set of legal contracts — in a single request. Much of the retrieval plumbing teams built in 2023 and 2024 simply isn't needed for mid‑sized datasets any more.
A model that can call your APIs is a different product from a model that can only talk. Function calling, structured JSON output and long‑running agent loops mean Gen AI can now sit inside a workflow instead of beside it.
This is the part businesses underestimate. Users now expect a search box to understand a sentence, a form to fill itself from an uploaded document, and a support widget to actually resolve the issue. Products that behave like it's 2021 feel broken, not merely old‑fashioned.
Ignore the hype cycle for a moment. Here is where teams are getting measurable returns today:
The common thread: none of these are "an AI product". They are existing processes with a very good intern attached.
Calling a model is now about as hard as calling any other HTTP API. Here is a minimal request using the official Anthropic SDK in a Node or Next.js project:
import Anthropic from "@anthropic-ai/sdk";
const client = new Anthropic(); // reads ANTHROPIC_API_KEY from the environment
const response = await client.messages.create({
model: "claude-opus-4-8",
max_tokens: 16000,
thinking: { type: "adaptive" },
system: "You are a support assistant. Answer only from the context provided.",
messages: [
{ role: "user", content: "Summarise this ticket and suggest a next action." },
],
});
for (const block of response.content) {
if (block.type === "text") console.log(block.text);
}
The interesting engineering problems have moved elsewhere. In 2026 the hard parts of an AI feature are:
None of that is exotic. It is ordinary backend discipline applied to a probabilistic dependency.
Three things look reasonably safe to bet on for the rest of this decade:
The counterpart to that last point is uncomfortable: if your product's only differentiator is something a general‑purpose model can now do in one prompt, you have a strategy problem rather than a technology problem.
A short and honest list:
If you are a team that has not shipped anything with Gen AI yet, the sequence that works is boring and effective:
Teams that follow this end up with something in production in weeks. Teams that start by building a platform end up with a platform.
Generative AI matters in 2026 for a fairly unromantic reason: it changed the cost of producing and processing content and decisions, and everything downstream of that cost is being repriced. The organisations that benefit are not the ones with the most impressive demo — they are the ones that picked a real workflow, measured it properly, and shipped.
The technology will keep moving. The discipline of choosing the right problem, evaluating honestly and keeping a human where it counts is what will still be true in 2030.
Advertisement
You might also like
We ship software that scales. Let's work together.