Don’t Grow Brains Where Bones Would Do

Every strategy deck has the same picture: tool, automation, workflow, agent, agentic process — an arrow climbing to the right. The message is that you climb it; that running agents make you more advanced than running rules. This confuses cost with progress. Autonomy is not a higher floor. It is an expensive cell to grow, and most teams are growing it where bone would have done.

The deck is wrong because the arrow is wrong. Software is not a building you climb. It is a body you compose. Bodies are not built from one tissue arranged in order of sophistication — they are built from different cells, each shaped for a different job, joined into tissues and organs that handle specific loads. There is no “advanced cell,” only the right cell for the work. A neuron is not nobler than a red blood cell. It is more expensive to run, and you do not want one carrying oxygen around your body.

The system is designed for the workload

Every engineer knows this from another life. You don’t run a database on a compute-optimized VM, or a graphics workload on a memory-optimized one. You don’t put a long-running batch job on the same node as a latency-sensitive API. You match the machine to the work — compute-heavy here, I/O-heavy there, GPU there, memory there — and you size each one to what it actually has to do, not to what looks impressive on the architecture diagram.

Biology has been doing this for half a billion years. A cell is a workload-specific machine. Bone cells lay down structure slowly. Skin cells turn over fast because they wear out fast. Red blood cells are stripped down to a single job — they don’t even keep their nucleus, because nothing they do requires one. The body never spent metabolic budget on capabilities it didn’t need at the work site. Doing that would have been a waste — and in evolution, waste loses.

AI has forgotten both lessons. I am not against agents. I build them, and the good ones are worth every rupee. The point is narrower: autonomy is something you pay for, and most teams are spending it on parts of the body that only ever needed bone — because sophistication is flattering, not because the load demanded it.

Two dials

There are two dials. One controls understanding — making sense of messy human input. The other controls action — changing something in the world. They are not the same dial, and the whole craft is in keeping them apart.

Let the agent read the messy request; let rules make the clean decision.

Eight cells

Real systems are tissues, made of specialized cells. Here are the eight you have to choose from.

Bone cell (osteocyte) — rules. Hard, structural, deterministic. The skeleton everything else hangs from: eligibility checks, fee tables, routing, validation — anything you can enumerate honestly. Cheap, reproducible, brittle, the day reality moves in a direction it didn’t anticipate.

Skin cell (keratinocyte) — AI inside a fixed workflow. The body’s interface with the messy outside: senses, classifies, extracts. The workflow around it decides what happens next. Most LLM-based production AI is skin. The trap is that a 95%-accurate skin cell, called a million times, produces 50,000 wrong readings, and the surrounding tissue has nothing to catch them.

Reflex cell (trained muscle memory) — a trained model running automatically. A classifier, a fraud-score, a recommendation — fired without reasoning, without an LLM call, often without anyone noticing it’s there. Reflex is most of the AI that a large company actually has. Cheap, fast, and dangerous, the way every reflex is dangerous: it does the same thing every time, including when it shouldn’t. Retrain it when the world drifts, or it will keep flinching at last year’s shadow.

Brain cell (neuron) — unconstrained agent. Reasons end-to-end, decides, acts. Buys coverage of cases you couldn’t write down. Pays in reproducibility, audit, and the same input on two Tuesdays, giving two different answers. Right for prototypes and small blast radii. Wrong in a kneecap.

T-cell (lymphocyte) — an agent with typed tools. T-cells act only through receptors that fit specific shapes; they will not engage anything else. That is exactly the pattern. The agent reasons freely; every action passes through a typed tool with hard constraints. The agent may want to refund 50,000; the refund tool refuses any amount above 500 without a human signature. Typed tools, constrained actions, permissions held outside the model — the kind of pattern MCP can support, if the system around it is designed properly. An impressive agent with no receptors is the easy half of the job.

Nerve cell (at the synapse) — human-in-the-loop. A nerve cell that hands a signal across to a different system — across the gap to a conscious human — and waits. The slowest pattern, often the right one — for expensive, irreversible decisions. The failure mode is rubber-stamping. After approval number five hundred, nobody reads.

Red blood cell (erythrocyte) — homogeneous multi-agent. Many copies of one cell, scaled across a workload — a thousand support tickets, an overnight backlog. The trap is mistaking parallelism for cleverness. Red blood cells spread the autonomy tax across the workload; they do not pay it.

Stem cell — heterogeneous multi-agent. Differentiates into specialists for a task and recombines. A planner dispatches diagnostic, retrieval, and drafting agents; their work composes back. Right where the problem truly decomposes — research, code review, multi-stage analysis. Wrong when it is one agent split into several roles because one wasn’t impressive enough.

Composing the body

A customer-service pipeline shows the cells at work together.

A message arrives — messy, human, structured by nobody. Skin cells read it, classifying the intent. Quietly, in the background, a reflex scores it for fraud and priority. Bone routes it, sending billing one way, refunds another, technical a third, and escalations a fourth.

Then each branch grows different tissue.

Billing is skin and bone: extract the invoice fields, validate, and post to the ledger. No brain anywhere.

Refunds are T-cell tissue: the agent reasons about the case, but the refund receptor only fits payments below the limit. Anything bigger gets handed up.

Technical is stem-cell tissue: a planner dispatches diagnostic and knowledge-base agents, and their findings compose into a ticket.

Escalation is brain and synapse: the agent drafts a careful reply, a human reads and approves it before it ships.

And overnight, a red blood cell swarm processes the low-priority backlog while everyone sleeps.

One pipeline, eight cells. None is more advanced than the others. Each is the right cell for what it eats.

The cost of using the wrong cell

Take one decision — refund a customer — and watch what happens when you choose wrong.

As bone: refund within 30 days with receipt; unused. Reproducible, instantly explainable, brittle on day thirty-one. The thirty-first-day customer leaves.

As synapse: bone handles the easy 90%, a human handles the awkward 10%. Slower, humane, still explainable, paid for by customers, not driven away by bone’s bluntness.

As an unconstrained brain, it reads the complaint, weighs the loyalty score, and issues the refund. Useful, and expensive in ways most teams don’t price. Reproducibility falls. Why it was refunded is now a paragraph of reconstructed reasoning, not a line of code. Proving it didn’t quietly favor one customer segment is now real work. You bought judgment, and paid for it in four other qualities.

That trade has to be seen. Repeat the same dial-up across forty decisions, and the problem in production isn’t that any one agent is wrong — it’s that you grew judgment where a checklist would have done, and nobody can reproduce what happened on Tuesday.

The objection

Pure-bone systems are brittle precisely because they are complete. The old RPA bots broke the instant a button moved two pixels. Doesn’t that argue for agents everywhere?

No. It argues for honesty about which inputs are actually fixed. Those bots failed because someone called an open problem closed and encoded it in the most rigid form available. Bone where skin was needed. The answer is not to replace all bone with brain. It is to grow the right cell for the load — and never let the convenience of one talk you into misusing the other.

The discipline

The deck’s arrow points the wrong way. The goal was never to climb to “fully agentic.” For every decision in a body of work, the goal is the simplest cell that still carries the load — and the nerve to hold that line against the steady, friendly pressure to add a little more judgment to things that worked fine.

The nerve is the hard part, because the agent is the most flattering shape we have. It looks modern. It signals to the board that we are doing AI, not merely thinking carefully. Reaching for it when the load did not demand it is not a technical mistake. It is a small dishonesty about the shape of the problem — picking impressive material to make it seem like the kind of team that uses it.

Use bone where the answer can be described. Train the reflex where the pattern is stable. Put skin where the world is messy, and the rulebook around it can still decide. Use T-cells where the agent must reason but must not run free. Connect a synapse where being wrong is expensive and final. Spin up red blood cells where the same work repeats at scale. Compose stem cells where the problem genuinely decomposes. Keep a clear record of all of it.

Grow brain everywhere instead, and you have not built something advanced. You have built something heavy, costly, harder to trust, and slightly vain — paying the autonomy tax for work that bone would have carried.

Perfecting Software

The industry has decided what perfect software is. Software-as-a-service is dead; service-as-a-software is the future; the perfect system is the one you never operate, because the agent does the work (self-learning and self-correcting software agent). Billions in market value moved this year on that sentence. It has one missing word, and the word is fatal: perfect for whom?

Perfect is not a property a system can hold, any more than beauty is a property a face can hold — it is a verdict, and a verdict needs someone to pass it. The CFO calls cheap software perfect. The user calls it perfect when the clicks vanish. The engineer means maintainable; the security team means contained; the auditor means legible and repeatable. These are not the same system. They are barely on speaking terms. “Perfect software,” unqualified, is a sentence missing its object.

And even when you supply the object — perfect for the user, decided — the noun still fails, because the qualities we ask for fight each other. So perfect is impossible twice over: relative to the observer, and incoherent in itself.

Start, then, with the thing we already agree is near-perfect — a living one — and notice it is never simple. A single cell runs more concurrent processes than anything you have shipped, in the dark, without a status page. None of it is simple, and yet the word that fits a body moving easily through a hard day is not complicated. It is closer to “complete“. So distrust the engineer’s oldest wish: that perfection would arrive as simplicity. Nothing simple has ever been alive.

Take the first impossibility first. Simplicity, looked at squarely, is not in the system at all — it is in the meeting between the system and a mind. The cell looks complex to us; to a sufficiently larger intelligence, we might read as trivial — a few drives in a trench coat, fully predictable. The size of the verdict tracks the size of the observer. The same software that feels like air to the user is a swamp to the engineer; the dashboard that delights the buyer terrifies the auditor. Simple is an answer that depends entirely on who is being asked.

Now, the second impossibility is harder. Even fix the observer — build only for the user — and the dials still refuse to all turn up together. Intelligent software shows why most clearly. The least simple machinery we have built offers the simplest surface a person has touched: you just ask. But hiding complexity is not intelligence; a cell hides staggering complexity and reasons about nothing, a light switch hides a power grid and reasons about nothing. Concealment is mere design.

Now make it a smart switch — one you can flip from your phone, that notices the room is empty and turns itself off, that learns your evenings and warms the lamps before you ask. That is no longer concealment. That is reasoning, however modest, about a situation no one wrote down in advance. And the moment you grant it that, the other dials shudder. Simplicity falls — there is a hub now, an account, a firmware, an app that wants updating. Reliability falls — the dumb switch worked through three governments; the smart one needs the wifi up, the cloud reachable, and the certificate unexpired. Honesty falls — why it turned off at 9:47 is no longer something you can read from the wall. Security falls — a thing on a network is something that can be reached from that network. Affordability falls, plainly. You bought one quality and paid for it in four. Intelligence is the further, dearer thing — meeting what no one specified in advance — and it is paid for in complexity, the exact currency simplicity was trying to hoard. Raise one, the other falls.

This is the shape of every quality we want. Adaptability buys coverage and pays off in reliability; what keeps changing cannot promise the same answer twice. Push security and speed, simplicity, and a generous budget all retreat behind their checkpoints. Cheapness eats beauty first. There is no setting of the dials where every quality stands at maximum together, not because we lack the cleverness, but because the request is incoherent, the way the tallest and shortest in the room is incoherent.

Which exposes the wish hiding under all the others, the one printed as a row of prefixes: self-correcting, self-healing, self-monitoring, self-everything. A system that needs no one. Read it back: we are specifying an introvert — someone whose ideal is never having to ask. But nothing alive is built that way, and here two words part company that we usually treat as one. A thing can be whole — sealed, sufficient, needing nothing — or complete — made entire by what lies outside it. The body heals itself and keeps doctors. The mind corrects itself and keeps people who will say you are wrong. Strip those away on principle, and you do not get a master; you get someone bleeding quietly because help felt like weakness. Maturity is not self-sufficiency. It is good coupling — knowing what to keep inside the boundary and what to hand across it. The sealed machine that needs no one is not the summit of the design. It is its loneliest, most brittle form, and it fails the way isolated things fail: silently, all at once.

Which is the lesson everyone learns about people, usually the hard way. We are told to seek the perfect partner, as if such a person existed and the task were a search. Nobody marries perfect. You marry the right one — right for you, fitted to your particular angles the way nothing general ever could be. Nor do you marry someone already complete; you become complete together, by coupling two unfinished things, making what neither was alone. The completeness is not found. It is built, and never quite finished, and the not-finished is not the marriage’s failure. It is the marriage.

Software is this kind of object, and we keep mistaking it for the other kind. The most general system fits the most people slightly, and no one well, perfectly in the abstract, like a key cut for every lock, which is a flat blank that opens none. The right system is cut to its problem the way a marriage is cut to two specific people, and cannot be built for everyone because it was only ever going to be right for someone.

Which means the work does not end, and isn’t meant to. A right-fit system is not delivered; it is kept — the way a marriage is kept, or a body, or a house. Software makes this concrete because software is never finished: the world it lives in keeps moving, the people change, the load shifts. Tie your satisfaction to being done, and you have chosen a craft that will keep you quietly miserable, because done is not coming. The happiness lives in the fit and in the keeping of it — in the moment the tool seats into the problem and someone’s work goes quietly, permanently easier, and in the years of small adjustments that follow.

Perfect software, if you built it, would be a house no one lives in: a showroom, every surface optimised, none of it anyone’s. The right house has scuffed stairs, a window set exactly where the morning needed it, a door that sticks each monsoon and that you stopped noticing because you live there. You do not admire the right house. You inhabit it.

There is no perfect thing. The qualities will not stand in one room at once, and they answer to too many eyes. There is only the right thing, for someone, for now, chosen, built, and kept up, the way a marriage is kept up. The work of it never ends. That is not the work failing. That is the work.

India Doesn’t Need Its Own ChatGPT. It Needs UPI for AI.

Every Indian household runs on agents.

The property agent who finds the flat. The CA who files the return. The passport agent who knows which form goes in which window. The RTO agent who turns a four-day ordeal into a Tuesday afternoon. The pandit who picks the muhurat. The neighbour who knows which school form still needs to be submitted in hard copy.

This is not an inefficiency. It is the default UX for navigating complexity in India.

The AI question, then, is not whether Indians will adopt agents. They already have. The question is what rails these agents will run on.

I am using “agent” deliberately. In India, an agent is the person who helps you navigate a messy system. In AI, an agent is software that can reason, use tools, and act. The interesting question is what happens when the second starts absorbing the work of the first.

I was invited to a meetup last month by M2B, who runs a small but sharply curated gathering of people thinking about consumer AI in India. The format is a fireside chat without the fireside — no moderator in the formal sense, no slides, no panel, just an opening hypothesis from the host and four or five invitees who do not arrive polite. What follows is roughly how that evening went. The arguments are theirs; the names are not.

The debate

We had taken over the back room of a coffee place in Indiranagar that was loud enough to argue in and quiet enough to hear each other. Six of us around a table built for four — M2B, four invitees, and me. Filter coffee in glasses. Karthik had his laptop closed. Lakshmi was the only one not on her phone.

M2B had brought the five of us together because she wanted to pressure-test a strong opinion she had been forming. She opened.

“Here is what I keep coming back to,” she said. “ChatGPT can explain a school admission policy to a parent. It cannot tell that parent what the school will actually accept at the counter. That gap is what I want to argue about tonight.”

She took a sip of her coffee.

“My hypothesis is that the next decade of Indian consumption gets reshaped by AI — and India has to own enough of the rails underneath that consumption to keep the value here. Not building everything from scratch. But sovereign infrastructure where it matters — Indian-language models, India-specific personalisation, agents tuned to how Indians actually transact in healthcare, education, finance, welfare. The US and China are not letting their consumption layer ride on someone else’s infrastructure. India should not either. So the question I want to argue out — what does that look like, sector by sector?”

She looked around the table.

“Each of you has a different lens. Tell me where you think the opportunity actually lives.”

Arjun, sitting opposite me, went first. He was already nodding before she finished.

“I am Arjun. I run Saathi — a personalised AI tutor for Indian school kids. CBSE, ICSE, state boards, in Hinglish, with longitudinal memory of how each child learns. So I have skin in this argument.”

He leaned forward.

“I agree with M2B’s framing — sectoral, personalised, India-specific. But I would push harder on daily habit. The consumer AI products that win in India are the ones the user opens every day. Education is a daily habit. So is fitness, journaling, mental-health support. The deepest user understanding in this country will come from products that sit inside a kid’s evening routine or an adult’s morning. Saathi sees a child every day for six years. That is not the same kind of personalisation ChatGPT does.”

He paused.

“ChatGPT’s memory will eventually know your kid likes chess and writes in British English. After six years Saathi knows your kid keeps confusing similar-triangle ratios with congruence, gives up on geometry word problems after thirty seconds, learns better from worked examples than theory, and is exam-anxious in math but not in science. That is a completely different depth of user model. It is what makes hyper-personalisation in M2B’s frame real, and it is what general-purpose chatbots will not bother to build.”

Priya had been watching this with the slightly amused expression of someone whose objection was waiting in line. She set her phone face-down on the table, which she did when she was about to make someone work.

“I am Priya. I closed a consumer-AI fund last quarter and I have spent the last ninety days saying no to founders. My lens is unit economics. I am with Arjun that retention compounds — that part is right. But the cheque-writing question is different. At Indian ARPUs, I need the next user to cost almost nothing to serve. Otherwise this becomes services with a chatbot on top.”

She held up a finger.

“My concern with the sectoral-agents framing is specific. When AI is bolted onto a workflow that still needs per-transaction fulfilment, the unit economics break. Pure-AI products undercut you on cost — ChatGPT will do half of the bureaucracy or insurance or healthcare advice for free. And the high-trust premium does not stay where you think it stays. The family CA is not just standing still while AI commoditises his low-end work. He is bolting ChatGPT to his own desk to do faster first drafts, push more volume through the same junior team, and offer concierge service at the top. The boutique end gets cheaper and faster too. So the squeezed middle gets squeezed harder, not softer. M2B’s agents-for-every-sector idea — beautiful as a thesis — only works in the cells where the AI does most of the work and the human professional cannot absorb AI as a productivity layer to defend their flank. I am not seeing many of those cells in India yet.”

Karthik had been listening with the specific stillness of someone preparing to take apart what had just been said. He didn’t lean in. He just started talking.

“I am Karthik. I run retrieval and tool-use evaluations at a foundation-model lab. I want to be clear up front — I am not the frontier-models-will-eat-everything caricature. Curation matters. I will not pretend otherwise.”

He paused. I thought he was done. He wasn’t.

“My disagreement with M2B is about sovereignty. I do not think the knowledge graph is the moat. The model does not need to know Indian bureaucracy or jyotish permanently. It just needs to pull the right context at the right time — from public APIs, government data feeds, scraped databases, whatever is available. And that layer gets better every quarter. Indian founders building hand-curated knowledge graphs are, in my view, building moats that get commoditised in 18 to 24 months once enough of the workflow knowledge is exposed via APIs. I do not think India needs to build the whole stack. Build the application. Use the global models. That is where the money is.”

Lakshmi had been waiting. She set her glass down and looked across the table at M2B, not at Karthik.

“I am Lakshmi. I work on digital public infrastructure. My lens is different from the other three.”

She took a sip of her coffee.

“M2B is partly right about sovereignty but for the wrong reason. India does not need sovereign AI because of geopolitics. India needs public AI rails for the same reason it needed UPI — because without them, private operators cannot reach the bottom of the pyramid. Public language models, public ASR for Bharat languages, public document standards. Private operators competing on experience on top. The pitch I would put on the table is not India builds its own ChatGPT. It is India builds its own UPI for AI. That is the architecture that worked for payments and will work for AI.”

She looked around the room.

“My worry about every sector M2B named — healthcare, education, finance — is the same. The consumer AI conversation is being captured by Silicon Valley product frames that ignore the citizen at the bottom of the pyramid. Whatever you build for the top 200 million is fine. But it is not the country.”

The table sat with that for a moment. M2B turned to me.

“Nitin. You have been quiet. What is your version?”

I took my time. I had been thinking about how to put it.

“I think you are all partly right and arguing past each other. There is more than one consumer AI here. You are each describing a different one. Can we name them and see if that helps?”

Arjun put his cup down. “Let’s try it.”

“Start with the obvious. ChatGPT, Gemini, Claude. Public knowledge, general-purpose conversation, shallow personalisation that learns you write in British English and prefer numbered lists. Call it Layer A. Indian founders should not chase Layer A — at least not yet. Global players are too far ahead and the building blocks are becoming commodities.”

Karthik picked it up before I could go further. “Agreed on that. And I would add — there is a layer next to A that is also foundation-lab territory but is being built right now, not already built. Generic task completion. Operator-style browser agents, Claude-style computer use, Gemini-style agentic browsing — the model plus a browser plus a few hours of compute, completing generic tasks where the world is clean. Documented APIs. Standard workflows. Predictable interfaces. Book a flight on a documented portal, fill a form, move money through a clean fintech API. That layer belongs to the foundation labs. Same reason — Indian founders should not chase either, at least not right now. Call that Layer C.”

“Skipping B?” I asked.

“On purpose. B is Arjun’s,” said Karthik.

Arjun smiled. “Go on, Nitin. You try it.”

“Layer B is specialised conversation with deep personalisation. Narrow domain, deep on both axes — the domain and the user. Not you write in British English. This Grade 8 kid keeps confusing similar-triangle ratios with congruence, gives up on geometry word problems after thirty seconds, learns better from worked examples than theory. ChatGPT will never bother building that depth on either axis for an Indian curriculum. Saathi is the canonical example,” I concluded.

Arjun nodded. “So Layer B is where I sit. The moat is both the curriculum-deep world-curation and the longitudinal user model. Subscription business, because the user comes back daily and the marginal cost of the N+1th query is near zero. That tracks.”

“So now we go to Layer D?” asked Arjun. “Who wants to try?”

“Layer D is what Karthik just gestured at the boundary of when he described Layer C. Generic task completion is foundation-lab territory because the workflow knowledge is in the API. Domain task completion is not, because the workflow knowledge is fragmented, lived, and operational. Bureaucracy. Ritual. Claims navigation. Admissions paperwork. The moat is the same kind of asset as Layer B — user-curation plus domain-curation — plus an extra layer of operational curation. The agent acts on the user’s behalf, end to end,” said M2B.

I built upon M2B’s thoughts and said, “And one thing I want to land before Karthik comes back to push on it. Inside Layer D, the moat has a half-life, and the half-life varies enormously across bets. Bureaucracy is on a decaying moat — assume Passport Seva eventually exposes a clean API for renewal personalised by applicant type. Student. Senior citizen. NRI. Minor. Maybe a 5-year window before the moat shrinks to operational variance plus fulfilment. But ritual timing — muhurat, panchang, regional commentarial traditions — has a durable moat. No government will ever expose a panchang API. A ritual agent can compound the curation moat for decades. Where the data is public, the algorithm open-source, or the knowledge commonplace, the moat decays. Where the data is private, the algorithm proprietary, or the knowledge fragmented and lived, the moat compounds. Pick your Layer D bet by half-life.”

Priya cut in. “And the pricing follows from the action, in both layers. The user pays per outcome in D, not per month, because the thing they are buying is the thing that got done, not access to the chat. That’s the unit-economics break I was groping at earlier — it’s not about which layer has better margins, it’s that B and D are structurally different businesses. Subscription versus per-outcome. Different cap tables, different exit shapes. They aren’t comparable on the same axis.”

“Yes. Exactly, let’s whiteboard this!” said M2B.

LayerWhat it isExampleLikely advantage
A (subscription)General conversation, shallow personalisationChatGPT, Gemini, ClaudeGlobal foundation labs
B (subscription)Specialised conversation, deep personalisationAI tutor for Indian curriculumIndian domain players
C (subscription)Generic task completion, clean workflowsPersonal Assistant for Travel Booking and VISA form-filling via documented APIs.Global foundation labs
(possible disadvantage for those who expose APIs)
D (outcome-pricing)Domain task/workflow completion.Bureaucracy, ritual, claims navigationIndian founders blue ocean (moat half-life varies)

Karthik nodded slowly. “I buy the half-life framing. I still think you are overestimating how long some of these moats last. But at least now the argument is testable — we will know in five years which way the moats actually went.”

I let that sit. Then I went back at him with the question that had been forming all evening.

“Two-way version of your industry-collapse argument. You spent the first half hour asking whether foundation labs will stay out of the consumer agent layer. The mirror question is whether application companies should stay out of foundation models. India is building Sarvam, Krutrim, the AI India Mission. Should Indian application founders be running OSS — DeepSeek, Qwen, Llama — and competing on the application stack alone, or vertically integrating downward? China’s labs are now competitive with US labs through OSS. India’s are not yet.”

Karthik looked uncomfortable for the first time that evening, which is how I knew the question landed.

“OSS for now. Build on Llama or Qwen, fine-tune for Indian languages where needed, win at the application layer. Indian foundation-model bets are a longer-term play and not where the consumer AI money will be made in the next five years,” said Karthik.

“So Indian founders win the application layer if they can. Which is the conversation we have been having.”

“Yes.”

There was a beat. Then I gave the analogy I had been holding back.

“I have a healthcare background. Healthcare has a useful analogy. Epic and Cerner tried to expand from core EHR into specialist workflows, but radiology, oncology, cardiology and pathology systems survived because they were built for the job. Platform gravity is real, but domain workflow depth resists it. Same reason people will not ask Meta AI in WhatsApp to book their travel even though it is technically possible — they will ask MakeMyTrip’s agent, because MakeMyTrip is built for the job.”

Priya picked up her coffee, took a sip, set it down.

“Fine. I will accept the framing. The moat is the same kind of asset in B and D, action plus per-outcome pricing is what makes D a different company, maybe shaped as an aggregator of services or specialized boutique service shop, and the half-life argument makes my unit-economics question per-bet rather than per-layer. I still think Layer B is where most of my portfolio fits — subscription economics are cleaner. But I will stop arguing as if Layer D is a worse version of the same bet. It is a different bet. Multiple different bets, depending on half-life.”

Lakshmi had been silent through the Karthik exchange. Now she set her glass down.

“Bringing this back to the citizen. The Layer D we sketched could be transformative for Indians who currently overpay the neighbourhood agent. But two things worry me. Liability — when the bot misreads a date and a citizen loses a passport renewal. And vernacular access for the citizens who need this most.”

She had a way of saying bringing this back to the citizen that made you sit up. It was not aggression. It was a reminder of who was actually missing from the conversation.

“On liability — the frame exists. The insurance industry runs it today. Confidence thresholds, human review below cutoff, audit trail on every action. Liability sits with the operator, not the model. Apply that frame and the regulatory question becomes manageable,” said M2B.

“And vernacular?”

I jumped back in. This was the part I had thought about the most and was the least comfortable with.

“Honest answer — the first MVP in Layer D works in the four or five languages where Indian-language speech recognition is good enough. My own language, Konkani, is a year-three problem. These Indian language models are the precondition for Indian founders to reach beyond the top 200 million.”

Lakshmi looked at me for a long beat. She does this. It is not approval. It is filing.

“So you are saying the agents compound on top of public rails, funding Indian language models and curated APIs?”

“Yes. Without the public rails, Layer D reaches the urban top 200 million and stops. With them, it has a path beyond.”

“That is the answer I wanted to hear from you.” She actually smiled when she said this. Then: “Fine. I will accept the thesis. We will see whether the public rails get built in time.”

M2B leaned forward.

“Then let’s land this. If the frame is right, what does each of you see as the opportunity in your sector at each layer? I want to know whether this generalises or whether it is sector-specific.”

Karthik went first. “Healthcare. Layer B is winnable on Indian medicine traditions — homeopathy, ayurveda, and the way Indian patients actually describe symptoms — plus longitudinal patient memory. Durable moat, because Indian medical curation stays specialised. Layer D — claims navigation, post-discharge follow-up, the messy reimbursement flow. Per-outcome on the claim recovery.”

Arjun jumped in. “Education. Layer A is homework help, kids already use ChatGPT. Layer B is Saathi. Layer D is admissions, scholarships, board-exam paperwork. Admissions may decay as UGC data improves. Board paperwork probably stays fragmented longer.”

Priya was nodding now. “Finance. Layer C surprised me — fintech APIs are clean enough that foundation labs probably eat it. Layer D is the Indian opportunity I had been mispricing. Insurance claims, unusual tax filings, ESOP paperwork, loan restructuring, NRI compliance. Durable moats, because Indian financial regulation will not simplify on a five-year horizon.”

Lakshmi added, “Welfare. Layer B is a scheme-eligibility advisor that knows the citizen’s situation, language, district, family composition. Layer D is the agent that handles the long tail — escalations, knowing which BDO office requires which affidavit. Interesting twist on half-life — the good outcome in welfare is the public layer maturing. Layer D operators here should want their static moat to decay. Long-term defensibility is operational variance and experience design, not workflow knowledge.”

M2B was writing on a napkin.

“So the matrix: for every sector that matters — healthcare, education, finance, welfare, and the obvious others — Indian founders should be careful with A and C, and focus harder on B and D. Inside D, the half-life decides whether the bet is a ten-year window or a thirty-year business.”

“Yes,” I said. “And the public-rails point applies to Layer D in every sector. Without those, Layer D reaches the urban top 200 million and stops. With them, it reaches the country.”

Lakshmi looked across at M2B. “Which brings us back to the reframe I put on the table early. Your sovereignty argument is a public-infrastructure argument. The sovereign building blocks you want are the rails. The private layer competes on experience, sector by sector, layer by layer.”

M2B set down her pen. She thought about it for a beat.

“You did say it early. I dismissed it as too narrow at the time. But what the room has built tonight is exactly that — India builds its own UPI for AI, with private operators competing in Layers B and D on top. It is not what I came in with. It is a sharper version. I will take it.”

That was the closest thing to a closing point the evening produced. Not consensus on which bet wins, but consensus on the shape of the opportunity: a four-layer matrix of sectors and layers, with Indian founders winning some cells and losing others, moats decaying or compounding depending on whether the public layer eventually catches up, and a public-infrastructure layer underneath that decides how far any of it reaches.

Karthik went back to his laptop. Lakshmi paid the bill, which M2B tried to argue about and lost. We walked out into Indiranagar; the clouds were ready to burst.

The frame

India’s consumer AI conversation collapses different things into one. That collapse produces bad strategic advice — funding Layer A wrappers and ignoring everything else.

The moat in the layers where Indian founders can win is the same kind of asset — curated knowledge the foundation model does not have. User-curation. Domain world-curation. Operational curation. Not different moats. The same moat applied at different depths and in different sectors. Moat half-life is the test. Where the data is public, the algorithm open-source, or the knowledge commonplace, the moat decays as public rails mature. Where the data is private, the algorithm proprietary, or the knowledge fragmented and lived, the moat compounds.

M2B’s question was the right one — what does this look like, sector by sector? The answer the room landed on is a matrix. Picking knowledge moats by half-life and services where unit-economics fit. That is the agent economy — not one giant assistant, but many specific agents that scale the behaviour Indians already pay humans for.

India does not need a ChatGPT moment. It needs the rails underneath it, and the operators on top.

The model is the reasoning layer. The company is the operating layer. The public rails decide how far it reaches.

India does not need to invent a consumer AI behaviour. It needs to scale the one it already has.

The Mutated AI-first Office

Ten mutations of the AI-native office. Some of your colleagues already have powers. Others have side effects. Most have both.


There’s a moment, somewhere around slide three, when you spot the em-dash (—). Then another. Then a cluster of them, loitering like teenagers at a mall, and your brain finishes the sentence on its own. Ah. Claude wrote this.

A year ago, that observation was an indictment. “You used AI for this?” — accusation, eyebrow, judgment, the whole symphony.

Today, the teams adapting fastest have flipped that question on its head. “You had two hours, and you didn’t use AI for this?” Same eyebrow. Opposite direction. Even more judgment.

The office mutated. Half of your company is still operating on a handbook written for the previous species.

So here is the field guide. Ten unwritten mutations I’ve been observing in companies that are quietly running a different game.

Think of it like the X-Men universe, except the mutations didn’t show up at puberty. They showed up the week your company rolled out Claude. Some people got powers. Some people got headaches. Some people got both and haven’t figured out which is which. The professor isn’t coming. There is no school. You’re on your own to figure out which mutation you have, and whether it’s the kind you weaponise or the kind that quietly eats you.


Mutation 1: Change Shape to Match the Room

Knowing how to use a pivot table used to be a flex. Today, it’s like saying you can boil water. Nobody is impressed. They’re mildly worried about you if you can’t.

The same shift is happening to AI right now, except faster. The intern who whispers “I used Claude for this” with the energy of a confession booth is doing the cultural equivalent of saying, in 2008, “I used Google to find that document.” Endearing. Briefly. The first time.

Mystique survives because she becomes whatever the room demands. The professionals coming out ahead right now are doing the same thing, except the room is changing every quarter, and the disguise is fluency, not a face.

Imagine being the only person in 2014 still proudly typing every formula by hand because using INDEX-MATCH felt like cheating. That’s the vibe.

The funny part is the apologising. The scary part is what happens to the people who don’t stop apologising. Two years from now, they aren’t in the room. They’re not even copied on the email about the room.


Mutation 2: Read the Mind Behind the Document

AI output is the starting line. The follow-up question is the finish.

Picture two people. Both presented a ten-page document. Both used Claude. One of them spent the saved two hours sharpening the argument, stress-testing the numbers, and rehearsing the awkward questions. The other one used the saved two hours to doom-scroll.

Now the meeting starts. Somebody asks, “Why this assumption and not the other one?”

Person A answers from memory. Person B starts pressing Ctrl-F on their own document.

The funny moment is watching someone Ctrl-F a doc that was supposed to be theirs. The scary moment is realising that person B was you last Tuesday. Every senior leader I know has now developed a single, brutal habit — call it the Professor X move — they ask a double-click question in the first five minutes. They aren’t testing the model. They’re testing you. And like any good telepath, they’re reading the gap between what’s on the page and what’s actually in your head.

The model can give you a starting line. It cannot give you a finish.


Mutation 3: Heal From Your Own Deleted Code

The engineers who thrive in this era have Wolverine’s healing factor — except for code instead of skin. Write it, scrap it, regrow it by lunch. No scar. No grief. No association.

There used to be a different feeling. Engineers will recognise it. You’d stay late, write 400 lines of clean, opinionated code, and feel a quiet pride in it. That’s mine. I made that. That feeling is gone, and most engineers haven’t grieved it yet.

The new normal: you generate 800 lines of code by lunch, scrap 400 of them by 2pm, and feel nothing. Not loss. Not pride. The same emotional intensity you’d apply to deleting a misspelt WhatsApp message.

The funny version of this is the senior engineer who still names his branches like they’re his children and refuses to delete his auth module even after it has been outclassed by a 90-second regeneration. The scary version is that same engineer, six months later, defending an architecture that should have been scrapped on Tuesday — because if he scraps it, he has to admit that the part of him that wrote it isn’t the part that matters anymore.

If the code isn’t precious, the judgment is. If you can’t make that switch, you’re grieving the wrong thing.


Mutation 4: Audit the Work You Used to Do

The pyramid has flipped. What was grunt became smart, what was smart became cheap, and what was cheap is now where the value lives — storytelling, problem-framing, reviewing, deciding.

This is Rogue’s problem, scaled to the entire workforce. She absorbed every power she touched and then had to learn to control what she’d taken on. AI has handed every professional an enormous new capability overnight, and the people winning are the ones figuring out how to audit what they now have access to. The rest are being run by it.

The funny version is the PM who realises that her job for the next decade is essentially to interview five customers and write three crisp paragraphs of context — and that this is the audit. The model can generate a hundred PRDs. Only she can tell which one is hallucinating the customer.

The scary version is the engineer who has spent fifteen years executing tickets — the ticket says do X, I do X, I close the ticket, I get a good review — suddenly asked to review output for a living, and discovers that he has no idea how. Reviewing demands taste, judgment, suspicion, the ability to say “this looks right, and that is exactly why I don’t trust it”. These are not skills you pick up from a Udemy course on Friday.

Factory workers became auditors. Engineers are next. The transition is not optional. The retirement plan, for the people who refuse it, is.


Mutation 5: Phase Out of the Review Chain

The chain of trust has quietly grown a new link. You write code, often with an agent. You submit a PR. An agent reviews the PR first — flags the risks, summarises the diff, and lists the suspicious bits. Then a human picks it up, already briefed by the bot. Models reviewing models. The human is the third (or the last) reviewer in a process that used to have one.

The funny version is the senior engineer who has started writing PR descriptions aimed at the AI reviewer instead of his teammates — adjusting his tone, padding the rationale, gaming whatever the bot seems to reward. A grown adult, doing the developer equivalent of writing an essay for the teacher who gives the most partial credit.

The scary version is the slow Kitty-Pryde-style vanishing of the last human who actually reads the code. She phases out one layer at a time. First, she stops reading the diff. Then she stops reading the bot’s summary. Then she stops reading the bot’s executive summary. Now she clicks the green checkmark when the dashboard turns green, because the dashboard turned green because the bot said so, because the bot was trained on a thousand previous PRs, all in the same chain, rubber-stamped. Somewhere in that loop, the last person who could spot a subtle logic error logged off for the day. Possibly the year.

The PR didn’t fail. The review chain did.


Mutation 6: Burn Through Tokens Like Flame

Word travels. Multiple enterprises have burned through an entire fiscal year’s AI budget in a single quarter. Not because someone was reckless. Because everybody, all at once, discovered they could. The fire didn’t need an arsonist. It just needed permission.

The funny version: a VP triumphantly showing the “AI usage” chart in the QBR. Beautiful trend line. Up and to the right. The CFO walks in three slides later, carrying a bill that looks like a phone number.

The scary version is the next slide, which doesn’t exist yet but is being drafted in many companies right now: “AI cost-to-revenue ratio.” That’s the slide where productivity gains have to start showing up in actual P&L. If you spent millions in tokens and you can’t point to measurable outcomes, you didn’t do an AI transformation. You did a very expensive science fair.

AI without ROI is just a hobby with a higher invoice.


Mutation 7: Multiply Yourself Into a Team

This is the headline of the decade, and most companies haven’t printed it.

The IC who learns to orchestrate three or four agents — pick the right model for each job, write the brief, review the output, catch the hallucinations, glue the work together — is doing the job of a small team. Some companies are calling the agents minions. The naming is silly. The leverage is not. It’s Jamie Madrox’s power, the Multiple Man — one body, many duplicates, all working in parallel, all needing direction.

The funny version is the twenty-two-year-old engineer who has no human direct reports and somehow has more operational complexity than your average VP, running fourteen parallel agent workflows like he’s coordinating an airport.

The scary version is what this does to the org chart. The ten-person scrum team is quietly becoming a three-person pod. In some teams I’ve seen, a two-person pod. In one, a single engineer running what used to be a sprint. Standup is now a person talking to themselves about what their agents did overnight. The retro is a Notion doc that the agents wrote. The PM is also the tech lead and the QA. Capacity didn’t shrink — the surface area each human covers expanded by an order of magnitude, and the headcount adjusted accordingly. If your last reorg cut the team by 60% and called it efficiency, this is what was actually happening.

And inside that pod, the senior engineer who has built a fifteen-year career executing well-defined tickets — never wrote a brief, never had to delegate — is now managing a fleet of agents who, like every direct report in history, do exactly what you said, and exactly not what you meant. Agents don’t read minds. Neither do your direct reports. The senior engineer who learned to manage people is fine. The one who never did is in trouble.

The headcount didn’t leave because the work left. The headcount left because the work fits in fewer heads.


Mutation 8: Freeze Mid-Decision

For roughly the last eight years, decision-making in tech orgs has been quietly delegated upward. Let me check with the PM. Let me check with the architect. Let me wait for the PRD. Let me get the ticket.

Whole cohorts of professionals have built careers without ever having to make a real call. The structure was decided for them. The hierarchy decided for them. The Jira ticket decided for them.

Now you have to manage agents. Agents need decisions. Constantly. Mid-task. With incomplete information. And here’s the Iceman trap — you can build anything out of ice, bridges, weapons, armour, an entire fortress — but if you won’t pick a direction, none of it moves.

The funny version is the engineer who asks the AI what it should do, then forwards the AI’s answer to Slack to ask his colleagues what they think the AI meant, and then schedules a meeting to align on the AI’s preferred approach. Six layers of consultation to avoid one decision.

The scary version is the senior leader who looks around at all the new tooling, all the new agents, all the new leverage, and realises that the limiting factor isn’t compute, cost, or the model. It’s that nobody in the building has the muscle to decide fast enough to keep the agents fed.

A flock of agents waiting for instructions is the most expensive idle resource your company has ever owned.


Mutation 9: See the Pattern Across Ten Thousand Pasts

Everyone is suddenly talking about taste as if it were a setting you could toggle in your Anthropic console. It is not. Taste is a graph you build over the years, node by node, by being exposed to enough things that patterns start to assemble themselves. Destiny, the precog, could see across ten thousand futures because she’d already seen ten thousand pasts. The future-sight wasn’t magic. It was pattern recognition compounded.

The funny version: an engineer who has only ever built a few apps confidently tells a designer that her layout is wrong. The designer who has used 10,000 apps quietly closes her laptop.

The scary version is that the companies winning right now aren’t winning because they have better models. Everybody has the same models. They’re winning because somebody in the building has seen ten thousand products, ten thousand workflows, ten thousand failures — and you’ve seen thirty. The graph matters more than ever, because the model will give you a hundred plausible options, and only taste tells you which one isn’t embarrassing.

You can’t shortcut this. You build it by paying attention, on purpose, to things you didn’t make.


Mutation 10: Remember the Sky Exists

To be on top of everything happening in AI, you have to be unemployed.

Storm commanded the weather because she remembered the sky existed. Most of the people frying themselves trying to keep up with AI have forgotten. The leverage is never behind another browser tab. It’s never in the next podcast. It’s in the part of your brain that you can only reach by closing the laptop.

The funny version is the director who hasn’t seen sunlight in three weeks announcing in standup, with the calm of a hostage, that he has achieved alignment with the new harness.

The scary version is that the anxiety isn’t a bug. It’s a signal — and the people who learn to read it figure out something quickly. The people who don’t are still optimising their RSS feed at 2am.

Pick one problem. Go end-to-end. Make peace with the fact that you will not be an expert on everything. Nobody is. The people who act like they are have simply outsourced their anxiety to LinkedIn.

Better than yesterday. Not better than the entire AI ecosystem. Just better than yesterday.


Closing

The old handbook was about how to do the work.

The new handbook is about what to do once the work has been done.

The em-dashes will keep showing up — like in this post. The tokens will keep getting burned. Your code will keep getting deleted by something that doesn’t know what your weekend felt like. The ten-person team will continue to become a three-person team. And every two hours, somebody at your company will save themselves a routine afternoon and then quietly throw the saved time straight into the void — into another deck, another refinement loop, another search for the perfect dashboard colour.

The one mutation that didn’t make the list, because it isn’t a mutation, it’s the whole point:

Use the saved time on the one thing the machines can’t do for you.

Talk to a customer. Sit with a problem until it tells you what it’s actually about. Have the conversation you’ve been avoiding. Make the decision your org has been pretending it’s already made.

That’s the work now. Everything else is a starting line.

The office mutated. The mutations are catalogued. The only question left is whether you used the time the machines gave you to become someone they can’t replace — or whether you spent it making prettier slides.

The machines gave you time. Spend it like it matters.

India’s AI Impact Summit

What I Heard and Read Between the Lines about the India AI Impact Summit 2026

Last week, India did something unprecedented. It hosted the fourth global AI summit. This was the first time a Global South nation hosted such an event. The India AI Impact Summit 2026 spanned six days at Bharat Mandapam in New Delhi. It drew over 100 country delegations and 20+ heads of state. Global AI leaders, including Sundar Pichai, Sam Altman, Dario Amodei, Demis Hassabis, and Mukesh Ambani, gathered together.

They all converged on a single question: What does AI look like when 1.5 billion people are part of the equation? and, What is in it for them?

I have tracked this space closely through my work in AI deep tech consulting. I have also worked in AI adoption strategy. I want to share what I think it means. This is relevant for India, for the enterprise, and for those of us building in this space.

The $250 Billion Infrastructure Bet

The headline number is staggering: over $250 billion in AI infrastructure commitments announced in a single week.

Reliance Industries and Jio committed $110 billion over seven years. The funds will support gigawatt-scale data centres in Jamnagar. A nationwide edge computing network and 10 GW of green solar power are also included. Mukesh Ambani’s framing was blunt: “India cannot afford to rent intelligence.”

Adani Group pledged $100 billion by 2035. This pledge is for renewable-energy-powered, hyperscale AI-ready data centres. They are expanding AdaniConnex from 2 GW to a 5 GW target.

Microsoft committed $50 billion by the decade’s end. This commitment aims to expand AI access across the Global South. India is a major recipient of this effort.

Google announced subsea optical fibre cable routes connecting India, the US, and the Southern Hemisphere.

TCS announced OpenAI as the first customer for its new data centre business. This includes 100 MW of AI capacity, which is scalable to 1 GW. This is part of OpenAI’s $500B Stargate initiative.

Larsen & Toubro and Nvidia are building India’s largest gigawatt-scale “AI factory” in Chennai and Mumbai.

These are not token announcements. This is nation-scale infrastructure being laid down.

My take: I don’t think the big conglomerates are delivering intelligence — they’re removing friction. Geo-political friction. Scaling friction. The bottom layers of this cake — energy and infrastructure — are the critical ones. We’ve already seen the US government push back on its own AI companies. The US government argues that energy and infrastructure are scarce. US energy is not for Indian users to consume, even if it is a paid subscription. They should be diverted to building America’s intelligence edge.

Reliance’s $110B and Adani’s $100B represent significant investments in this friction. They aim to control the compute, energy, and network layers. This strategy ensures India isn’t dependent on renting intelligence from abroad.

India has three structural advantages that make it an attractive infrastructure partner. The OpenAI-TCS Hypervault deal is the first proof point. The AI-Energy-Finance trifecta that the World Bank hosted a session on isn’t a coincidence — it’s the foundational equation.

  • Democratic values align with the West.
  • Being a peninsula provides abundant water for cooling for data centers.
  • The sun in regions like Rajasthan, Gujarat, and Andhra Pradesh offers natural energy.

Sovereign AI: Made-in-India Foundation Models

Under the ₹10,372 cr IndiaAI Mission, India unveiled three sovereign AI model families. This signals a shift from being a consumer of global AI to becoming a creator of indigenous intelligence.

Sarvam AI (Bangalore) launched Sarvam 30B and Sarvam 105B. These models were trained entirely in India from scratch. They were not fine-tuned from foreign models. The 105B model handles complex reasoning with a 128K context window and agentic capabilities. Both support all 22 Indian languages and outperformed several global peers on MMLU-Pro benchmarks.

BharatGen (IIT Bombay consortium) unveiled Param2 17B MoE. It was developed with Nvidia AI Enterprise. The model is optimized for governance, education, healthcare, and agriculture. It is also being open-sourced via Hugging Face.

Gnani.ai launched Vachana TTS — a voice-cloning system. It supports 12 Indian languages from under 10 seconds of audio.

My take: Building foundational models for India’s languages, culture, and legal context is genuinely important. Why is clear! It’s also partly a convenient wrapper around the real questions. There will be something to lose, and something to gain; and it’s not going to be equity for all states.

  • Where will infrastructure be built? Andhra Pradesh, Gujarat, Rajasthan, UP, …
  • What infrastructure essentials will be made in India? Renewables, Chips, …
  • Which infrastructure will be built? Energy, Data Centers, …
  • Who controls the natural resources (land, water)? PPP, Gov, Private, …
  • What do people lose? Land, Agriculture economy size, …
  • What do people gain? Intelligence access, New infrastructure economy, …
  • What does the government gain? Defence autonomy, …

IT Services: Reset, Not Requiem

India’s top IT companies addressed fears of obsolescence head-on — and the narrative was more nuanced than the headlines suggest.

TCS leadership acknowledged that while roles will evolve, the fundamental need for system integrators remains. The real constraint isn’t access to models. It’s structural. Organisations are layering AI onto fragmented digital estates built for transactions. These estates are not designed for real-time execution.

Infosys assessed a $300 billion AI opportunity across six sectors. Tata Sons issued a “defend-and-grow” mandate for TCS, accelerating AI acquisitions and up-skilling. The consensus was clear: true scale requires enterprise-wide process re-imagination, not just pilots.

A pragmatic insight that resonated: only 16% of developer time is spent writing code. The other 84% goes to production troubleshooting. That’s where agentic AI’s real value lies. AI won’t kill tech services. It will reset them.

In India, the chief AI officer in four out of five companies is effectively the CEO. Leaders stressed the importance of building on platforms rather than individual models. They emphasised the need for a talent strategy and values-based guardrails. Leaders also encouraged the courage to move from pilots to organisation-wide transformation.

My take: Bolting on an AI layer to existing systems is one way to solve the problem. The other way is to re-look into the enterprise in an AI-first world. Consulting firms in a system-integration or pure-technology consulting role will be relevant. Nonetheless, for pure software engineering, the demand for speed (in the name of productivity) will increase. This means that there will be more failed projects before the light at the end of the tunnel. Consulting that can evolve customers into an AI-first world will succeed, and those that are bolting on capabilities will survive. Consulting companies need to leverage their domain depth and partner on value creation rather than outsourcing for cost or risk. The CDO (Chief Digital Officer) is more critical to AI-driven than the CEO.

Five Impressive Products

EkaScribe (https://ekascribe.ai/) — an AI clinical scribe that lets doctors in busy rural clinics see patients without touching a keyboard. It handles prescriptions, history, and filing automatically.

Ottobots (https://ottonomy.io/) — autonomous hospital robots navigating corridors and elevators to deliver medicines independently.

Sarvam Kaze — AI smart spectacles. They see what you see. They explain the world in your local language via bone conduction. Launching May 2026.

Sarvam Edge (https://www.sarvam.ai/blogs/sarvam-edge) — on-device AI translating 22 languages in real-time with zero internet connectivity.

Mankomb’s “Chewie” (https://www.mankomb.com/chewie) — a kitchen appliance using real-time AI sensors to convert wet waste into nutrient-rich soil in hours.

Cooperation with Clenched Fists

The summit concluded with the New Delhi Declaration, endorsed by 88 countries including the US, China, EU, and UK. It delivered a Charter for the Democratic Diffusion of AI, a Global AI Impact Commons, a Trusted AI Commons, and workforce development playbooks.

But the tensions were palpable. The US delegation made its position explicit: “We totally reject global governance of AI.” The US framed AI squarely as a geopolitical race. Many middle powers used the summit to discuss building their own AI sovereignty. They focused on models, on chips, and on escaping Silicon Valley’s gravity. AI governance is rapidly moving from compliance afterthought to boardroom priority.

The Agentic Shift

The summit’s defining motif was the shift from traditional AI. In traditional AI, you ask, and it answers. It shifted to Agentic AI, where you instruct, and it executes everything. The progression started with ML and pattern recognition. It moved through deep learning and generative AI, leading to AI agents. Finally, it reached fully autonomous multi-agent systems. This progression was framed as the decade’s defining trajectory.

The message was clear: if your systems matter to your business, then AI across the SDLC is not optional.

Where the Value Gets Captured

Here’s the question I kept coming back to throughout the week: India has 1.5 billion walking, talking, naturally general intelligence. This is not just a population — it’s a market that needs expertise augmentation at scale. AI can transform agriculture with crop advisory. It can revolutionise healthcare with point-of-care diagnostics. It can enhance education with personalisation. AI can also allow strong but lean digital governance without becoming a surveillance state.

The summit’s “AI for All” framing is in the right direction. But the real test will be whether these infrastructure investments benefit the village clinic. They need to reach the smallholder farm. They must also support the government school.

The summit’s overarching message is unmistakable: India is not just adopting AI. It is building it. It is governing it. It is deploying it at scale. The real question is about who captures the value. Is it the infrastructure builders? Is it the model makers? Or is it the domain consultants/integrators who wire intelligence into the last mile & workflow?

Seems like everyone who will prevent the AI bubble from bursting is going to capture value. The “Planet” should not die in the process.

Generative AI in Healthcare

Today’s popular ChatBots have evolved to the point where they can ‘search’ the internet to build a profile of a person. While the idea of profiling might seem unsettling, what’s even more fascinating is their ability to dynamically integrate with external tools. This means these bots don’t just acquire context—they actively use it to take meaningful actions. And that’s a game-changer. In industries like healthcare, where inaction and delays can have serious consequences, this capability to bridge information and execution is nothing short of revolutionary.

Insights Are Necessary But Not Sufficient

We can design a world-class computer vision algorithm to detect potholes on roads—no doubt about that. The real value of such technology lies in its ability to prevent small potholes from escalating into traffic nightmares. But here’s the catch: insight without action is as good as scrap metal. Knowing there’s a pothole on Road A is useful, but if it’s not fixed, that insight is wasted. This is where Generative AI steps in, not just to detect problems but to close the loop by orchestrating solutions. Imagine a team of AI agents—a detector, a work approver, a fixer, and even a finance approver—all collaborating to decide which potholes get priority. Given limited budgets and resources, the challenge becomes an optimization problem: which roads to repair to maximize safety, improve traffic flow, and minimize frustration. With high volumes of insights, this kind of collaborative decision-making can cut through the ‘insights fatigue’ and turn knowledge into action.

Healthcare faces a similar dilemma. There’s a heavy emphasis on monitoring—producing insights that are supposed to drive action—but the gap between knowing and doing often remains wide. Take the case of a diabetic patient struggling to lower their HbA1c from 8.5. The problem might not be awareness but action: lifestyle changes like regular walks, strength training, better diet choices, or even adhering to medication schedules. The truth is, most people know what to do; the challenge lies in execution.

This is where a hyper-personalized approach becomes critical—like having a health coach who not only reminds you to do your sit-ups but makes sure you squeeze in 10 while you’re still on the call. Habits, once formed, become second nature (think brushing your teeth). But doctors don’t have the bandwidth to coach every patient. Enter Generative AI, which can act as a virtual co-pilot for healthcare professionals. Imagine a digital assistant that mirrors a doctor’s conversational style while incorporating a coach’s motivational touch. This AI can identify when a patient is straying off course, focus discussions on actionable lifestyle changes, and tackle one problem at a time. If medication compliance isn’t the issue, it can hone in on diet or exercise—whatever the patient needs most. Generative AI brings the promise to move insights to actions.

Generative AI Use Case Sampler

Generative AI has the potential to revolutionize healthcare by enabling smarter, more personalized, and action-oriented solutions. By leveraging diverse modalities like text, images, audio, and video, this technology can bridge gaps in patient care, education, and operational efficiency. Here are some potential use cases:

Text-to-Text: Personalized Discharge Summaries
Generative AI can generate hyper-personalized discharge summaries tailored to individual patients. By pulling data from EMRs and provider-recommended templates, these summaries can be presented in clear, actionable language, preferably in the patient’s preferred language. From follow-up instructions to medication schedules, this empowers patients to take control of their recovery with confidence.

Image-to-Text: Radiology Reports Made Smarter
Deep learning has already enabled precise interpretation of radiology images. Generative AI can take this further by generating highly personalized reports for different audiences, such as PCPs, patients, or specialists. By reducing radiologists’ workload and improving turnaround times, it can ensure quicker and more efficient delivery of critical insights. Moreover, Generative AI can allow radiologists to query images for specific details or compare similar images by vectorizing (creating embeddings) the image and reports.

Text-to-Image: Visualizing Patient Education
Generative AI can help patients better understand their diagnoses and treatment options by creating personalized visualizations. A picture truly is worth a thousand words, especially in healthcare, where complex concepts can be challenging to convey through text or speech alone.

Image-to-Image: AI-Powered Image Reconstruction
Generative AI can enhance the quality of medical images through advanced reconstruction techniques, improving both speed and resolution. This capability can boost diagnostic accuracy and provide healthcare professionals with the clarity needed for more informed decisions.

Text-to-Speech: Accessibility for All
For patients with disabilities or language barriers, text-to-speech technology can make medical information more accessible. Whether through audio outputs or Braille conversion, Generative AI ensures inclusivity in patient communication and care delivery.

Audio-to-Text: Seamless Medical Transcription
Generative AI can convert conversations—between doctors and patients or among clinicians—into structured medical records. This technology streamlines documentation, allowing healthcare professionals to focus on patient care while simultaneously generating structured, actionable records.

Text-to-Video: Transforming Medical Education
Generative AI can transform training and education by generating personalized, easy-to-follow video content. From simplifying complex medical topics to creating interactive learning experiences, it offers a more engaging way to educate both patients and healthcare professionals.

Text-2-Text: Generative AI

A Text-2-Text generator can be used to build a story to recite to a child to help her develop better study habits. With a simple prompt, Generative AI (courtesy: ChatGPT) can craft a compelling story—like one inspired by Harry Potter—that captures the child’s imagination while embedding useful lessons. For example, a magical artifact like a “Focus Fuser” might serve as the centerpiece of the story, teaching readers how small, consistent actions can lead to meaningful progress.

Now shift to a healthcare setting. Medical jargon, while essential for precision, often confuses patients. Generative AI can take complex radiology reports and translate them into clear, patient-friendly language. For example, instead of saying, “Impression: The findings are consistent with a moderate right-sided pleural effusion,” the AI might explain: “The results of your imaging test show a moderate amount of fluid in the space around your right lung, known as a pleural effusion. There’s no sign of pneumonia or a collapsed lung. Your doctor may recommend further tests to get more clarity if needed.”

This translation doesn’t just simplify language—it empowers patients to understand their health better, enabling them to make informed decisions.

Text-2-Image: Generative AI

A Text-2-Image Generator can recreate familiar concepts with stunning precision and creativity. Take the classic representation of the “Three Wise Monkeys”—each embodying the principles of “see no evil, hear no evil, speak no evil.” With a simple prompt, AI can generate a vivid image of three monkeys, each covering their eyes, ears, or mouth, perfectly capturing the symbolic meaning behind the concept.

This same technology demonstrates its utility in healthcare through advanced imaging capabilities. For instance, it can generate a synthetic frontal chest X-ray (CXR) image of a patient with specific features, such as simple pleural effusion and focal airspace opacity. This isn’t just an exercise in realism—it supports medical education, research, and even diagnostic validation. The ability to generate medically accurate images empowers healthcare professionals and researchers to innovate and enhance patient care. It also supports the cause of patient privacy.

Image-2-Text: Generative AI

The image-to-text generator capability is a game-changer for accessibility, enriching experiences for visually impaired individuals and enabling deeper engagement with visual content through natural language. Auto-generation of key features from an image can enable search (E.g., get me pictures with a blue lake and snow-capped mountains).

On the other hand, in a healthcare radiology context, Generative AI can generate detailed radiology reports (E.g. CXR 2 views – AP/LAT) such as: “The heart size and mediastinal contours are normal. There is no evidence of focal airspace consolidation, pleural effusion, or pneumothorax. No acute bony abnormalities are observed, although degenerative changes are present in the thoracic spine.”. This not only reduces the workload on radiologists but also enhances accuracy and efficiency in delivering diagnostic insights. By automating the creation of such reports, AI enables healthcare professionals to focus more on patient care while ensuring timely and precise interpretations.

Reasoning is Complex

(*) The above reasoning is not to show any tool or technology in a Bad light.

Reasoning can be a tricky beast, as you’ve probably noticed by now. While a human might have gone for answers like, ‘Maybe the male prisoner was released!’ or ‘Plot twist—he escaped!’, AI takes a different approach. It sticks to the context you give it, like a dog chasing a stick. But here’s the catch: if you want AI to keep doing its mind-blowing, jaw-dropping, ‘WOW’ job, you’ve got to toss it the right stick—clear context and solid rules. Otherwise, you might end up with answers as wild as a soap opera plot!

Closing Quote

‘The machine does not think, but it reveals our thinking.’

Generative AI quality is proportional to the quality of the information and context we give it—whether it’s clear or confusing. This means the responsibility isn’t just on the AI (or its builders) but also on us (the users) to ensure it is used in a way that reflects important values. When used wisely, it can help us improve care, build stronger connections, and create a fairer world for everyone.

2024: Emerging Technology Trends

This blog is my attempt to make sense of the transformative technology trends shaping 2024, organizing them into a structure that helps me—and hopefully you—grasp their impact. From sweeping macro shifts to granular micro innovations, I’ve distilled my observations and reflections into this post to explore how these trends are reshaping our world. My goal is to spark ideas and inspire curiosity as we navigate the ever-evolving frontier of technology.

From Star Trek Dreams to Today’s Realities

As a lifelong fan of Star Trek, I often find myself marveling at how much of its futuristic vision has seamlessly blended into our everyday lives. What was once the realm of science fiction is now science fact, and it’s astonishing to see how the imaginative worlds of Gene Roddenberry have inspired generations of innovators. Let me take you on a journey through some of these Star Trek dreams and their counterparts in today’s technology:

  1. Communicators → Smartphones: Captain Kirk’s communicator is today’s smartphone, letting us call, navigate, shop, and even control our homes.
  2. PADDs → Tablets: Starfleet’s sleek devices are now tablets like iPads and Kindles, offering portable, powerful access to information.
  3. Universal Translators → Google Translate: Star Trek’s universal translator lives on in Google Translate, breaking language barriers in real-time.
  4. Tricorders → Portable Medical Scanners: Dr. McCoy’s tricorder inspired tools like GE’s VScan, revolutionizing portable medical diagnostics.
  5. Replicators → 3D Printing: Captain Picard’s replicator echoes in 3D printing, creating tools, prosthetics, and more layer by layer.
  6. Holodeck → Virtual and Augmented Reality: The Holodeck is here with VR and AR, immersing us in gaming, collaboration, and virtual experiences.
  7. Voice-Activated Computers → Siri and Alexa: Starfleet’s voice-activated computers are now Siri, Alexa, and Google Assistant, responding to commands daily.
  8. Data → AI like ChatGPT: The android Data foresaw today’s AI, like ChatGPT (+Robotics), transforming creativity, problem-solving, and workflows.
  9. Memory Banks → Cloud Computing and Big Data: Starfleet’s vast knowledge banks mirror today’s cloud computing and data lakes, offering limitless storage.

Star Trek’s genius lies not just in its speculative tech but in how it inspires us to push the boundaries of the possible. We may not have cloaking devices, or the Prime Directive fully figured out yet, but the trajectory is clear—we’re steadily turning sci-fi into sci-reality. The question is no longer if but when.

A Quote from a modern-day philosopher and visionary

“Imagine a digital product as the spirit animal of a human, guiding and empowering her in her journey. The question isn’t just how we maintain these companions, but how we nurture them to thrive alongside us in the pursuit of seamlessness.”

— CHATGPT (Prompt Engineered by Nitin Mallya)

Every post needs a thought-provoking quote, right? But in the age of AI, why not ask ChatGPT, our modern-day philosopher? A little prompt engineering led to a quote that resonated with a Star Trek twist.

Remember Chakotay from Star Trek: Voyager and his guiding spirit animal? It was more than mystical—it was a companion, helping him navigate challenges. Today, AI is becoming just that: a copilot, not just a tool, but a partner empowering us to explore and solve problems.

Another Quote

There’s a quote I love: “A product/service that gets better after we sell it.” I’m not sure who first said it, but it perfectly captures the magic of today’s connected technologies. It’s not just about creating products; it’s about creating experiences that evolve and improve over time.

For a salesperson, this quote highlights the thrill of the sell. For a product manager or engineer, it’s all about delivering the better. But the real brilliance lies in the platform/ecosystem—the invisible engine that keeps adding value long after the sale is made.

In the world of hardware, this might mean something tangible, like adding a dashcam to your car. But in software, the possibilities are limitless. Think of apps that refine workflows, tools that make complex tasks effortless, or AI systems that transform product usage. The game has shifted; it’s about enhancing every moment of the user’s experience over the product’s entire lifecycle.

Quantum Digitalization: The Journey to Hyper-Personalization

The trajectory of technology often feels like a dance between the micro and the macro, the tangible and the intangible. I call this journey Quantum Digitalization—a fusion of precision and expansiveness that is reshaping how we interact, innovate, and solve problems. It’s not just a trend; it’s a profound transformation unfolding in stages, each one moving us closer to a world where hyper-personalization isn’t merely possible—it’s inevitable.

I found inspiration in the AI paper, “Attention is All You Need,” and I’ve borrowed its clarity to describe the stages of this evolution. Each stage has a theme and a guiding principle that frames the technology and its impact.

Digitize: Data Is All You Need

The first step in this journey is to Digitize, or as we might say in India, Digify. This stage is about making sense of chaos—bringing structure to the unstructured and transforming information into a usable form. It’s the shift from paper to pixels, where workflows are streamlined, knowledge is centralized, and insights become attainable. However, the magic of digitization isn’t in collecting more data; it’s in collecting the right data. Too much can lead to a data swamp—overwhelming and unusable. Too little creates gaps that even the smartest algorithms cannot bridge. This stage is the foundation—the roots that support the tree of innovation. Without a strong base, the rest of the journey is shaky at best.

Digitalize: Experience Is All You Need

Once the data is in place, the next step is to Digitalize. This stage is often misunderstood. It’s not about Digitizing; it’s about creating meaningful, engaging experiences. Technology shifts here from being a tool to becoming a partner, enhancing how people interact with systems and processes. This stage is about connection—devices talking to each other, systems understanding users, and interactions that feel intuitive. Imagine seamless experiences, where diagnostics, decisions, and delivery happen almost invisibly. It’s no longer just about solving problems; it’s about delighting users. Unfortunately, many still confuse digitalization with digitization or equate it solely with software. But digitalization is much more—it’s about creating ecosystems where experience becomes the driver of adoption and innovation.

Qubitize: Accuracy is all you need

As the journey advances, we step into the stage of Qubitize, where the guiding theme is Accuracy is all you need. This is the realm of quantum technologies, which bring a level of precision, speed, and security that traditional systems simply cannot match. It’s here that the boundaries of what is possible begin to dissolve, unlocking a future once confined to science fiction.

At the heart of Qubitize are three transformative domains: quantum sensing, quantum computing, and quantum communications. Each represents a leap forward, reshaping how we measure, compute, and interact in ways that redefine accuracy.

Quantum Sensing is revolutionizing how we perceive the physical world. Traditional sensors—no matter how advanced—have limitations in precision and sensitivity. Quantum sensing taps into phenomena like quantum superposition and entanglement to deliver ultra-precise measurements of time, magnetic fields, gravity, and more. For example, quantum-enabled imaging devices could detect changes at the molecular level, opening doors to breakthroughs in fields like healthcare, geophysics, and environmental monitoring. Imagine medical scans with resolutions so high that they can detect diseases at their earliest stages or environmental sensors that can map underground resources with pinpoint accuracy. This level of sensing not only enhances accuracy but also expands what we can observe and understand.

Quantum Computing takes problem-solving to a whole new dimension. Unlike classical computing, where bits are either 0 or 1, quantum bits—or qubits—exist in multiple states simultaneously, enabling computations at unprecedented speeds. This allows quantum computers to solve complex problems, like optimization or molecular modeling, that would take classical systems centuries to process. For instance, quantum algorithms can revolutionize logistics by finding the most efficient routes in real time, or they can accelerate drug discovery by simulating molecular interactions at a scale and speed previously unimaginable. Quantum computing isn’t just faster; it’s smarter, enabling us to approach problems in ways that were previously inconceivable.

Quantum Communication offers a paradigm shift in data security and transfer. At its core is Quantum Key Distribution (QKD), which uses the principles of quantum mechanics to create encryption keys that are theoretically unbreakable. By leveraging entangled particles, QKD ensures that any attempt to intercept or tamper with the transmission is immediately detectable, making it a cornerstone for ultra-secure communications. Beyond security, quantum communication networks are laying the groundwork for a quantum internet—an interconnected web of quantum devices that could transform how information is shared globally. This leap will redefine the concept of trust in digital systems, safeguarding sensitive information in ways that traditional cryptographic methods cannot match.

Qigitalize: Seamlessness Is All You Need

Finally, we arrive at Qigitalize—the frontier where the physical and digital worlds blur into one seamless continuum. This stage is about fluidity, where boundaries dissolve, and technology adapts to us rather than the other way around. Imagine ecosystems where robots autonomously handle tasks, collaborating with humans only when necessary. Picture a world where virtual and real merge effortlessly, enabling interactions that are frictionless and immersive. Collaboration transcends barriers, and hyper-personalization becomes a given. It’s a vision of a world that feels intuitive, connected, and limitless.

AI: A Microtrend Shaping the Future

AI is in the midst of an explosion—a rapid evolution transforming how we build, use, and interact with intelligent systems. Let’s dive into how AI is expanding its influence in four transformative dimensions: learning styles, tasks, data modalities, and system designs.

Learning Styles: How AI Masters the World

AI’s ability to learn has evolved dramatically. It began with supervised learning, where labeled data taught machines to distinguish between cats and dogs. While groundbreaking, this method relied heavily on expensive, annotated datasets. Then came unsupervised learning, revealing patterns in unlabeled data, like customer segmentation. Semi-supervised learning bridged the gap, blending smaller labeled datasets with large unlabeled ones for efficiency. Reinforcement learning marked another leap, enabling AI to learn through trial and error by interacting with environments—think Chess or Go. But the game-changer is self-supervised learning, where AI generates its own labels from data structures, powering massive models like GPT. Combine that with transfer learning, which reuses pre-trained models for new tasks, and federated learning, which keeps data private while training across decentralized systems, and you see AI’s growing adaptability. These advances are turning AI into an increasingly self-reliant, scalable force.

Learning Tasks: From Assistants to Creators

AI has transcended its origins as an assistant. Initially focused on classification (e.g., “Is this a cat?”) and regression (e.g., “What will sales be next quarter?”), AI has now become a creator. Generative AI systems can write essays, design artwork, or even produce videos from simple prompts. This creative power is revolutionizing industries, from marketing and entertainment to education and healthcare. But generative AI is just the beginning. Multimodal capabilities allow AI to integrate text, images, and audio seamlessly. Imagine an AI that can describe a picture in words, generate a matching soundscape, or create immersive VR experiences—all from a single prompt. This evolution isn’t just about automating tasks; it’s about transforming AI into a collaborator, pushing the boundaries of creativity and innovation.

Data Modalities: Beyond Text/Images

As AI grows, it’s venturing into new data territories. Vision and language remain the bedrock, powering breakthroughs in computer vision, natural language processing, and search engines. AI’s ability to interpret haptics—touch and pressure data—is revolutionizing robotics and prosthetics, enabling machines to “feel.” Meanwhile, spectral data, which captures wavelengths beyond the visible spectrum, is transforming agriculture, defense, and medical imaging. These new modalities are extending AI’s reach into uncharted territories, creating once unimaginable possibilities.

AI Systems: From Assistance to Autonomy

AI systems are evolving at a pace that’s reshaping the boundaries of what machines can do. What’s most fascinating is how our trust in these systems has grown, allowing them to take on tasks that were once the sole domain of humans. This evolution is about more than efficiency—it’s about unlocking entirely new possibilities.

Let’s start with semi-autonomous systems. These are like reliable coworkers who need just a little oversight. Take drones, for example. They can map terrain, deliver packages, and navigate through complex environments on their own. Yet, for critical decisions—like rerouting in extreme weather or avoiding restricted airspace—they defer to human judgment. This “autonomy with a safety net” allows machines to handle repetitive or high-risk tasks while keeping us in the loop for truly important calls.

Then, there are multi-agent systems, which take teamwork to a whole new level. Imagine a city where AI agents manage traffic lights, not individually, but as a coordinated network. These systems communicate in real-time, adjusting signals across intersections to ensure the smoothest flow of vehicles. The result? Reduced congestion, lower emissions, and happier commuters. It’s like having an army of super-intelligent traffic controllers working in perfect harmony. But multi-agent systems don’t stop at collaboration—they can also compete. In financial markets, trading bots operate as independent agents, analyzing trends, predicting outcomes, and executing trades faster than any human could. Some even collaborate to manipulate market conditions for mutual gain, demonstrating just how dynamic and adaptive these systems can be.

The next step is fully autonomous systems. These are the true independents, capable of sensing, deciding, and acting entirely on their own. Self-driving cars are a prime example: they don’t just follow a programmed route—they interpret traffic signs, anticipate pedestrian movements, and adjust to road conditions in real-time. Industrial robots are similarly autonomous, assembling products, identifying defects, and even scheduling their own maintenance. But here’s where the challenge lies: when we hand over complete control to machines, the stakes are higher than ever. Safety protocols must be flawless, and decision-making processes must be transparent and accountable. We’re making great strides, but full autonomy still demands rigorous refinement.

And now, for the most exciting part? economic participation. AI is no longer just about doing what we already do, only faster or better—it’s about exploring new frontiers. Take generative AI systems in intraday trading. These systems analyze vast amounts of market data, identify patterns, and execute strategies faster than any human trader. What’s even more remarkable is their ability to adapt in real-time, learning from market fluctuations and refining their tactics on the fly. These agents aren’t just assistants; they’re active participants in the economy, creating wealth independently.

Beyond finance, autonomous systems are venturing into creative and strategic territories. Imagine an AI agent tasked with designing marketing campaigns. It could analyze audience data, draft ad copy, create visuals, and even determine the optimal time to launch—all without human intervention. Or consider healthcare, where AI agents might coordinate treatments for patients, consulting with doctors only for the most complex cases. These examples aren’t just theoretical—they’re already in motion, signaling a profound shift in how we think about machine intelligence.

This evolution is about more than technology—it’s about redefining what machines can do for us. AI is no longer confined to automation or assistance. It’s becoming a collaborator, a decision-maker, and even an innovator in its own right. And here’s the kicker: we’re only scratching the surface of what’s possible. As these systems grow more capable, adaptive, and independent, they’ll continue to push the boundaries of intelligence, creativity, and impact. This is the dawn of a new era, where machines don’t just follow—they lead. And the journey has only just begun.

How can this be regulated!?

Balancing Act of AI Regulation

Transparency | Equity | Accountability | Privacy | Safety | Responsible | Ethical | Trustable

Regulating AI is a delicate balancing act—a tightrope walk between fostering innovation and ensuring safety. Governing bodies are tasked with a daunting challenge: to embrace the transformative potential of AI while protecting society from its unintended consequences. It starts with risk classification, determining which systems are harmless tools and which might pose significant risks, like surveillance technologies with the potential for misuse. Coupled with this is the need for transparency and explainability—because if even the creators can’t fully understand their models, how can users or regulators trust them?

Data privacy is another cornerstone of responsible AI regulation. With AI systems handling sensitive information, particularly in fields like healthcare, strict safeguards are essential to prevent misuse and protect personal data. Beyond that, regulators must confront harmful applications head-on, banning systems that perpetuate discrimination or exploitation, such as social scoring mechanisms. These measures aren’t about stifling progress; they’re about building a foundation of trust, ensuring that AI not only thrives responsibly but also paves the way for sustainable growth. By navigating this tightrope, we can unlock AI’s full potential while keeping its promises aligned with human values.

Summary

Technology in 2024 is transforming at an unprecedented pace, bringing us closer to the Star Trek dream of seamless human-machine collaboration.

AI micro trend is pushing boundaries, evolving from simple assistants to autonomous decision-makers. Multi-agent systems optimize cities, while generative AI creates solutions in real time, transitioning from insights to actions. Machines are no longer just tools—they’re collaborators, turning science fiction into reality and revolutionizing how we work, live, and connect.

The Quantum Digitalization macro trend is all about redefining hyper-personalization, moving from digitizing workflows to creating immersive, Qigitalized ecosystems where the physical and digital worlds blend effortlessly. Powered by quantum sensing, computing, and communication, this trend is driving unprecedented accuracy, security, and innovation.

“Trend is fashionable. Fashions change. Old trends come back. But when they return, they’re never quite the same—they carry the weight of the past, reimagined for the present. A trend reborn isn’t just a repeat; it’s a remix, blending nostalgia with innovation, and reminding us that in the cycle of change, the new is often just the old with better timing. What will trend next?”