Categories
AI

What the Lessor Keeps

Two airlines can fly the same airplane. Not airplanes of the same type โ€” the same airplane, serial number and all, handed back at the end of a lease and reassigned, sometimes within weeks, to a competitor on another continent. AerCap owns more commercial aircraft than any airline on earth, and it leases them to airlines that spend their advertising budgets convincing passengers that flying them is a distinctive experience. The 737 MAX that wears Ryanair’s livery this year might wear Lion Air’s the next, repainted, recertified, its avionics untouched, its airframe indifferent to the change of ownership. The lessor does not care who is flying its asset. It cares that the asset comes back in airworthy condition and that the lease payments clear.

What the airline owns, in the sense that matters, is never the aircraft. It is the route network built up over decades of slot negotiations at constrained airports. It is the maintenance log โ€” every inspection, every part swapped, every anomaly a mechanic in Singapore flagged in 2019 that turned out to predict a fatigue crack nobody else had seen yet. None of that travels with the airplane when the lease ends. It stays behind, compounding, in systems the airline built and the lessor never touches.

Karl Mehta, who has spent a career inside enterprise software watching this kind of asymmetry repeat itself, put a version of it plainly: a model is a brain you rent, and you and your competitor rent the same one. The formulation has the compression of something that has been tested in a few dozen meetings before it found that sentence. It is also, structurally, the airplane story. Anthropic and OpenAI and Google are AerCap. They retain residual value on enormous capital assets โ€” clusters of GPUs depreciating on a schedule, weights trained at a cost that only a handful of balance sheets in the world can absorb โ€” and they lease access to those assets by the token, to anyone who can pay, including, in the same afternoon, two companies trying to put each other out of business. The model does not know whose prompt it is answering. It has no loyalty file. It has, in fact, no memory at all, in the ordinary sense of the word โ€” each call begins exactly where the last one ended for everybody, which is nowhere.

The asymmetry that airlines exploit is the one available here too, and it sits one layer up from the engine. Call it the embedding store, the vector database, the fine-tuning corpus, the retrieval index โ€” the terminology varies by vendor, but the function is constant. It is the accumulated, indexed residue of every customer interaction a company has had, structured so that the rented brain can be handed the relevant fragment of it at the moment of each new call. A bank’s fraud model and a competing bank’s fraud model can call the identical foundation model, route through the identical API, and arrive at entirely different verdicts on the identical transaction, because one of them is retrieving against eleven years of labeled chargebacks specific to its own card portfolio and the other is retrieving against four. The intelligence rented by the hour is, for practical purposes, a commodity, priced down toward marginal cost the way jet fuel is priced โ€” everyone pays close to the same number per unit. The memory is not a commodity. It cannot be, because it is not for sale; it is the institutional record of what has already happened to you, and no amount of capital lets a competitor buy a copy of your chargeback history any more than it lets them buy your maintenance logs.

This produces a particular kind of corporate vertigo, which Mehta’s sentence is really addressing. For three or four years the industry conversation about artificial intelligence has been a conversation about models โ€” which lab’s was larger, which benchmark moved, which release cycle a company should anchor its roadmap to. That conversation rewards being an early and aggressive lessee. But a lessee relationship, however aggressive, does not compound into anything a competitor cannot eventually also lease. The compounding, when it happens, happens in the layer below the API call: in how cleanly a company has structured the record of its own customers, its own failures, its own edge cases, so that the rented brain, plugged in fresh every morning with no memory of yesterday, can be handed exactly the right fragment of yesterday and made to look, for a few hundred milliseconds, like it has been there all along.

A hospital chart has two kinds of entries. There is the vital-signs strip clipped to the bed rail โ€” temperature, pulse, blood pressure, checked every four hours and replaced every four hours, because a reading from yesterday tells the night nurse nothing about the patient in front of her right now. And there is the permanent record in the file downstairs: the allergy that nearly killed him in 2019, the surgery, the medication history going back a decade, written once and never overwritten, because that record is exactly as valuable ten years from now as it is today. Nobody confuses the two charts. Nobody staples last Tuesday’s blood pressure into the permanent file. The hospital figured out, long before anyone digitized it, that memory is not one problem. It is two, and they fail in opposite directions if you run them through the same system.

Most teams building the layer Mehta is describing make exactly that mistake โ€” they staple everything to the same chart. The shorthand for it is dumping everything into a vector database and praying, and it is worth asking why that particular error is so popular. The answer is that it feels like progress: embeddings go in, something resembling memory comes out, and the team moves on to the next sprint without confronting the harder question, which is what kind of memory it just built.

Short-term memory is the vital-signs strip โ€” everything the model needs to finish the task in front of it and nothing it needs after. A customer-service exchange in progress, the order number already mentioned, the fact that this is the second call today, belongs here. So does the scratchpad of a multi-step agent: the search results just pulled, the file just opened, the partial answer being assembled before it commits. The test is not how important the information is but how long it stays true. A customer’s mood this minute is real and gone in twenty minutes; storing it permanently is like stapling yesterday’s temperature reading into the permanent file, undated, until the chart tells you nothing about fever and everything about clutter. Short-term memory should live in the context window itself, or a session-scoped cache, and it should be allowed to die when the session ends. The sin is not forgetting it. The sin is remembering it forever.

Long-term memory is the file downstairs, and it does not come in one shape any more than that file does. The first shape is semantic memory โ€” facts. A customer’s account tier. The chargeback history that decides, in fractions of a second, whether this morning’s transaction clears. Facts belong in a database with a schema, not a vector store, because a fact has a right answer and a vector store gives you an approximate neighbor. Ask a vector index what tier a customer is on and it hands you the five most semantically similar sentences in the corpus โ€” one correct, four merely correct-sounding. Ask a schema the same question and it tells you, because that is what the schema is for.

The more sophisticated shops are already building the seam between the two, rather than picking one and living with its blind spot. A knowledge graph keeps the relationships a schema is good at โ€” this customer, that account, this chargeback, in fixed and queryable connection to one another โ€” while still letting a retrieval layer search across it by meaning rather than by exact key. The approach has a name now, GraphRAG, and the name matters less than what it concedes: that facts and resemblance are different operations, and the honest fix is to run both and let each one answer the kind of question it’s actually suited for, not to force a single index to pretend it can do both jobs at once.

The second shape is episodic memory โ€” what actually happened. The specific conversation last March in which the customer explained, at length, why the previous fix didn’t work. The exact sequence of an agent’s failed attempt at a task, preserved so the next attempt doesn’t repeat it. This is where the vector store finally earns its keep, because an episode isn’t an exact-match lookup, it’s a resemblance โ€” has anything like this come up before โ€” and a vector index, built to find the nearest thing to a fuzzy question, is the right tool for that question and almost no other. The error was never using a vector store. The error is using only a vector store, for facts as well as episodes, on the theory that one hammer with sufficient cosine similarity can stand in for the whole toolbox.

The third shape is the rarest, and the one teams forget to build at all: procedural memory, which is not a fact and not an episode but a skill โ€” the model’s learned sense of how this company writes a refund email, escalates a complaint, formats an invoice. Style is the visible half of it. The other half is harder to see and matters more: the rails the model is forced to run on before it ever gets to choose a word. A refund above some threshold routes to a human, no exceptions, because the workflow says so, not because the model was persuaded to think so on this particular call. An agent that touches a production database does it through a reviewed function with a fixed set of permitted calls, not through whatever query it improvises in the moment. None of that lives in a prompt, and none of it lives in the model’s weights either. It lives in code โ€” the orchestration layer, the permissioning, the state machine the agent is required to pass through โ€” and it is procedural in the oldest sense of the word: not a memory of what to say but a memory of what is and isn’t allowed to happen, enforced whether or not the model that day feels like remembering it. It doesn’t live in a database at all. It lives in fine-tuning, in carefully maintained house-style examples, and in the surrounding scaffolding of guardrails and permitted actions, and it changes slower than the other two, the way a surgeon’s hands carry both technique and caution years after the specific patients are forgotten. A company that has built rich semantic and episodic memory but skipped this layer has a model that knows everything about its customers, writes in exactly the right voice, and is one well-crafted prompt away from doing something the company never agreed to.

The real argument here is not which database serves which layer โ€” that part is plumbing, and plumbing changes every eighteen months. The argument is that memory has to be triaged the way the hospital triages it, with something deciding on purpose what survives the session and what doesn’t, rather than writing every token of every interaction into the same undifferentiated store and trusting retrieval to sort it out later. A vector database with no triage in front of it is not a memory system. It is a landfill with a search function, and it will retrieve the wrong eleven-month-old conversation with the same confidence it retrieves the right one, because nobody wrote the part of the system whose only job is deciding what belongs on which chart.

The lessor’s airplane, repainted, will fly for someone else next year. The route network will not. Neither will the schema that knows a customer’s tier on contact, nor the index that remembers the conversation from last March, nor the fine-tuned hand that knows, without being told twice, how this company writes a refund email. These are the things that do not come back at the end of the lease, because they were never on it.

Categories
AI Work

The Dealers of Intelligence

Thereโ€™s a scene early in John Kenneth Galbraithโ€™s The Affluent Society where he describes Americans of an earlier era regarding industrial output with something close to reverence โ€” the sheer productive capacity of the nation seemed almost miraculous, a force that could reshape civilization. Within a generation, of course, that same output had become background noise. Factories hummed, goods appeared, and nobody paused to marvel.

The miraculous had become mundane, and the mundane had become infrastructure.

I found myself thinking about that arc recently while listening to Sam Lessin on the More or Less podcast.

Lessin made an observation that I havenโ€™t been able to shake: we probably arenโ€™t heading toward a single, triumphant AGI monopoly โ€” some god-machine that one fortunate company builds first and then rents to the rest of us in perpetuity.

Instead, Lessin suggested, we are barreling toward something far more ordinary, and in its ordinariness, far more interesting.

โ€œThere will be lots of โ€˜dealers of intelligenceโ€™. No one company will corner the market, no one big winner of AGI.โ€

Dealers of intelligence. I keep turning that phrase over. Where do we end up? No rapture, no singularity, no chosen company ascending to the throne of cognition. Just suppliers, distribution channels, price competition โ€” the unglamorous mechanics of any maturing market.

And historically, thatโ€™s exactly how this tends to go.

Salt was once precious enough to pay soldiers with. Spices rewrote the map of the world. Steel, oil, and computing power each arrived wrapped in mystique and guarded behind scarcity before the inevitable happened: extraction improved, distribution scaled, and the miracle became a utility. Nobody thinks about the engineering marvel of the electrical grid when they flip a light switch. They just expect the light to come on.

If Lessin is right โ€” and the competitive landscape of the last two years does little to argue against him โ€” intelligence will follow the same curve. Not a single oracle, but a market. Cognitive utilities. Price-per-token negotiations. The same forces that commoditized bandwidth will commoditize reasoning, and weโ€™ll argue about our AI subscription tiers the way we currently argue about our data plans.

Which forces the interesting question: when genius is cheap, what exactly becomes valuable?

The professional moats of the last century were largely built on the ability to process specialized information and output reliable answers.

The doctor, the lawyer, the financial analyst, the programmer โ€” each occupied a protected position because access to their domain of reasoning was genuinely scarce.

If I can buy a substantial fraction of that reasoning from a commodity supplier for fractions of a cent, the premium on raw cognitive horsepower doesnโ€™t just shrink. It collapses.

Whatโ€™s left, I think, is the un-commoditizable. Empathy. Physical presence. Judgment under conditions of genuine uncertainty and consequence. And above all โ€” taste.

Taste is the thing that has always resisted systematization, because taste isnโ€™t rational in any clean sense. Itโ€™s the residue of lived experience, of specific childhoods and particular failures and the accumulated weight of caring about things over time.

An algorithm can produce a structurally flawless piece of music; it takes a human to decide whether it matters, and why, and to whom.

That act of curation โ€” of choosing what deserves to exist and what doesnโ€™t โ€” is going to become more consequential, not less, as the supply of technically competent output explodes.

Thereโ€™s something almost liberating about this, if you let yourself sit with it.

A world of commoditized intelligence is, paradoxically, a profoundly human one. It removes the burden of raw computation from the center of what we do and pushes us toward the edges โ€” toward the questions only we can ask, the connections only we can feel, the decisions only we can be held accountable for.

The dealers of intelligence will handle the materials. Weโ€™ll still have to decide what to build. Architects.


Questions to Consider

  1. If intelligence becomes a commodity like electricity or bandwidth, which industries or professions will be slowest to feel that pressure โ€” and why?
  2. Lessin frames this as a market with many suppliers rather than a winner-take-all race. Does the competitive landscape today support that view, or does it still look like a sprint toward consolidation?
  3. What does โ€œtasteโ€ actually mean when the person exercising it is doing so with AI-augmented perception and judgment? Is it still the same thing?
  4. Who gets to haggle with the dealers? If cognitive utilities are cheap in aggregate but not universally accessible, does commoditization risk deepening inequality rather than democratizing thought?
  5. If the value of answering questions falls and the value of asking them rises, what does education need to look like โ€” and how far is it from what it looks like now?