(Written by Arpan Ghosh for Google's "Meet the Builders" campaign — celebrating builders across Asia Pacific using Google AI to solve real, local problems.)
There's a version of "agricultural AI" that works beautifully — if your field looks like an American corn farm. Hundreds of flat acres, one crop, clean rows a satellite can read from orbit without breaking a sweat.
That is not what farming looks like for most of the world.
Across Sub-Saharan Africa and Southeast Asia, a huge share of food is grown on plots smaller than an acre, with maize, beans, and cassava planted together in the same small patch of earth — a practice called intercropping, and one that's been quietly feeding families for generations. It's also, as it turns out, something almost no satellite AI model can actually read. The pixels blur three crops into one signal. The model shrugs.
That gap — between what AI can see and what farmers actually grow — is where I started.
Three problems, one fleet
I didn't want to build a single clever model and call it a day. I wanted to build something that behaved less like a chatbot and more like a small, tireless team working on behalf of a farmer who has never once opened a satellite dashboard.
So AgriSentinel became a fleet of five specialized agents, coordinated by a Gemini 3.5 orchestrator that decides, plot by plot, cycle by cycle, which specialists actually need to run:
- One agent untangles intercropped plots, mathematically separating what's actually growing in a mixed field.
- One agent sees through monsoon clouds, reconstructing a usable picture of a field's health during the exact weeks — peak growing season — when optical satellites go blind for weeks at a time.
- One agent catches crop stress before it's visible, watching how a field breathes and cools days before drought or disease would show up as yellowing leaves.
- One agent verifies soil carbon claims remotely, so a farmer who switches to sustainable practices has a shot at carbon-credit income without needing an expensive soil-drilling crew to show up and prove it.
- And the last agent, built on Gemma, does something I think matters more than any of the technical work: it takes everything the other four agents found and compresses it into one plain-language SMS message — no dashboard, no app, no data plan required. Just a phone.
That last piece was non-negotiable for me. It's easy to build a system that's technically impressive and useless to the person it's supposedly for. If a farmer can't read the output on the phone they already own, I hadn't actually solved anything.
What building it taught us
I deployed on Google Cloud Run with Vertex AI powering the reasoning layer, and honestly, most of the real learning happened in the gap between "it works on my machine" and "it works for a stranger clicking a link."
I hit a free-tier quota wall almost immediately once the orchestrator started making several Gemini calls per cycle — a good reminder that prototyping tools and production infrastructure are different animals, and moving to Vertex AI (billed against our own project, authenticated through the service running the code, not a loose API key) was the right kind of growing up to do. I found that some models are only served on specific regional endpoints, not others — the kind of detail you only discover by actually shipping, not by reading documentation in the abstract. I had four agents originally running one after another, taking almost a minute per cycle, until I realized they didn't need to wait on each other at all — they run in parallel now, and a full cycle takes about fifteen seconds.
None of that is glamorous. All of it was necessary.
Why this, why now
I'm not claiming AgriSentinel is finished. Two of the five agents run on real, working architectures with simplified models rather than fully trained production weights — I say so plainly in our own documentation, because I'd rather be honest about where I am than pretend otherwise.
But the shape of the thing feels right to us: not one model trying to be everything to everyone, but a small fleet of specialists, each doing one job well, coordinated by something smart enough to know which specialist a given moment actually calls for. That's a pattern I think has a lot further to run — for farming, and for a lot of the unglamorous, essential work that doesn't happen in a boardroom.
I built this because the smallholder farmer growing three crops on half an acre in the middle of a smartphone-free, satellite-blind, cloud-covered season deserves the same quality of intelligence that a thousand-acre industrial farm gets by default. Not someday. Now, with the tools that already exist.
That's the story I wanted to tell.
Built with: Gemini 3.5, Gemma 4, Vertex AI, Google Cloud Run, Pub/Sub, Firestore, and Google Antigravity.
Top comments (0)