惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
IT之家
IT之家
B
Blog
博客园_首页
博客园 - 司徒正美
有赞技术团队
有赞技术团队
博客园 - 聂微东
I
InfoQ
美团技术团队
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
FarmSense AI - An intelligent farming companion
Prath · 2026-04-20 · via DEV Community

This is a submission for Weekend Challenge: Earth Day Edition

Please comment if the api token is expired. I'll update it.

Note: Most of the context is generated by AI reviewed by me. I think it did a pretty good job explaining, Thanks.

What I Built

FarmSense AI — an intelligent farming companion that gives small
and mid-size farmers access to expert-level agronomic advice,
real-time weather-aware irrigation scheduling, crop disease diagnosis,
soil health planning, and proactive alerts — all in a conversational
interface powered by Google Gemini.

Farming is one of the largest contributors to climate change, yet small
farmers lack access to the precision tools that could help them use
water, fertilizer, and land more efficiently. FarmSense AI democratizes
precision agriculture — the same science that large agribusinesses use —
and puts it in the pocket of every farmer, for free.

Three core AI modules:

  • 🌿 Crop Doctor — Upload a photo or describe symptoms. Get disease diagnosis with severity rating and organic treatment recommendations first, chemicals only as a last resort.
  • 💧 Irrigation Advisor — Real-time weather (temperature, humidity, precipitation, wind) fetched from Open-Meteo and injected into every response. Get water requirements in liters per acre, optimal watering times, and drought/overwatering risk flags.
  • 🪱 Soil Health Advisor — Soil assessment, region-specific cover crop recommendations, composting timelines, and 3-season crop rotation plans to restore soil carbon.

What makes it different from just asking ChatGPT:

  • 📍 Auto-detects GPS location silently on load, reverse-geocodes to city/region via OpenStreetMap — injected into every prompt automatically
  • 🔔 Proactive weather-aware alerts generated from your session history
    • 7-day forecast, cached and refreshed every hour
  • 💰 AI recommendations auto-parsed for expenses → "➕ Log to Tracker" chips appear below messages → one-click finance logging
  • 🌾 Persistent multi-turn sessions per module with full conversation memory

Demo

🔗 Live: https://radiant-axolotl-99d2d9.netlify.app/

Key flows to try:

  1. Allow location → see "📍 Your City" pill appear in chat header
  2. Go to Irrigation Advisor → ask about your crop → watch real-time weather data appear in the response
  3. Ask the AI to recommend fertilizer → see "➕ Log to Tracker" chips appear below the message
  4. Check the 🔔 bell icon on the dashboard — weather-based alerts generated automatically from your session

Code

🌱 FarmSense AI

Your intelligent farming companion — powered by Gemini 2.5 Flash

FarmSense AI is a full-stack precision agriculture assistant that gives small and mid-size farmers access to expert-level crop disease diagnosis, irrigation scheduling, soil health advice, financial tracking, and proactive weather-aware alerts — all in a conversational interface.


🚀 What Makes It Different

Feature FarmSense AI Generic AI Chatbot
Location-aware by default ✅ Auto-detects GPS, injects region into every prompt ❌ User must describe location every time
Real-time weather in responses ✅ Open-Meteo API injected into irrigation prompts ❌ No live data
Proactive alerts ✅ AI scans sessions + 7-day forecast, pushes warnings ❌ Reactive only
Finance loop ✅ AI recommends → "Log to Tracker" chip → expense logged ❌ Advice stays in chat
Streaming responses ✅ Token-by-token SSE stream ❌ Full response wait
Multi-module memory ✅ Persistent sessions per module per user ❌ Stateless
Image diagnosis

How I Built It

Architecture

The diagram above shows the full system. The browser layer handles
GPS detection, streaming rendering, and the one-click tracker chips.
The Express backend owns session state — every module gets its own
Map<sessionId, Session> entry holding full message history and
persistent context (crop type, location, soil) so Gemini always has
the complete conversation. Three external services power the
intelligence: Gemini for AI, Open-Meteo for real-time weather,
and Nominatim for reverse geocoding — all injected server-side
before each Gemini call.

Tech Stack

Layer Tech
Frontend Next.js 15, React 19, Zustand, Tailwind CSS
Backend Express, TypeScript, Prisma, PostgreSQL
AI Google Gemini 2.5 Flash via LangChain
Weather Open-Meteo API (free, no key)
Geocoding Nominatim / OpenStreetMap (free)
Deploy Netlify (frontend) + Railway (backend + DB)

Interesting Technical Decisions

1. Location without asking

Most farming apps ask "where are you?" on every session. FarmSense
calls navigator.geolocation silently on app load, reverse-geocodes
via Nominatim, and injects the result into every AI prompt. The user
sees a 📍 Thane, Maharashtra pill in the header and never has to type
their location.

2. SSE streaming to fix truncation

The original implementation used model.invoke() with
maxOutputTokens: 2048 — long irrigation schedules were getting cut
mid-sentence. Switching to model.stream() with SSE eliminated the
token ceiling entirely and made responses feel alive. The frontend adds
an empty assistant bubble immediately, fills it token-by-token, and
shows thinking dots until the first token arrives.

3. Finance loop — closing the advice→action gap

After every AI reply, a background call to gemini-2.0-flash extracts
any purchase recommendations as a JSON array without touching the DB.
This runs on a separate /extract-items endpoint so it never pollutes
the chat session. Result: expense chips appear below the message
automatically — the gap between advice and action is one click.

4. Proactive alerts without blocking

Generating alerts for multiple sessions sequentially was causing 30–60
second timeouts. Fixed with Promise.allSettled for parallel calls,
a 15-second per-session timeout, a fully-cached fast path, and feeding
only user messages (not giant AI replies) to the alert prompt to keep
token usage lean.

5. Why this matters for Earth Day

  • Organic treatments recommended first → less chemical runoff into soil and water
  • Precision irrigation → reduces water waste (agriculture uses 70% of global freshwater)
  • Soil health + crop rotation → carbon sequestration and reduced tillage emissions
  • Region-specific cover crops → biodiversity and natural pest control
  • Finance tracker → helps farmers measure ROI on sustainable practices, making green choices economically visible

Prize Categories

🏆 Best Use of Google Gemini

FarmSense AI uses Gemini Models as its core intelligence across
three distinct use cases:

  • Multi-turn conversational farming advice — full session history
    • specialized system prompts per module streamed via SSE using LangChain's model.stream()
  • Expense extraction — a lightweight background call to gemini-* after every AI reply, structured JSON output only, zero DB writes, never pollutes chat history
  • Proactive alert generation — parallel Gemini calls per session with 7-day weather forecast context, strict JSON output with title/message/type/module fields, 1-hour in-memory cache

Model selection is fully configurable via GEMINI_MODEL and
GEMINI_FAST_MODEL


Built for Earth Day 2026 — because every farmer deserves a precision
agriculture advisor in their pocket, and because sustainable farming
at scale is one of the most impactful levers we have against climate change.