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

推荐订阅源

Y
Y Combinator Blog
有赞技术团队
有赞技术团队
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
博客园 - 【当耐特】
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
The Cloudflare Blog
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
Vercel News
Vercel News
IT之家
IT之家
MyScale Blog
MyScale Blog
博客园_首页
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
罗磊的独立博客

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
TharVA : Keeping India's Desert Heritage Alive with Offli...
Daathwi Naag · 2026-05-23 · via DEV Community

This is a submission for the Gemma 4 Challenge: Build with Gemma 4


What I Built

TharVA : Thar Virtual Assistant
A mobile-first, fully offline, multilingual AI assistant for camel herders in the Thar Desert.

Not a general assistant. Not a chatbot.
A field tool built specifically for Camel herders in rural Rajasthan who raise camels in one of the world's harshest environments, have no reliable internet, work with their hands, and need answers in Hindi or any other language, fast, when something goes wrong with an animal.

The spark came from time I spent in Bikaner, talking to Ashok Bishnoi, a social entrepreneur near the National Research Centre on Camel in Jorbeer and to Raika Community camel keepers whose generational knowledge of camel behavior, calving, and desert survival isn't written down anywhere accessible. What they lacked wasn't expertise. It was fast access to reliable guidance at the right moment.

One conversation stayed with me:

  • A calf had been rejected by its mother.
  • A time-critical emergency where the first hours determine survival.

The formal channels couldn't give clear enough answers fast enough. What actually helped was a Raika Community elder who had seen it before and knew exactly what to do.

TharVA is an attempt to make that knowledge reachable in a field, with no signal, in Hindi / any language, with one hand free.

The Two Interaction Modes

It has two interaction modes, built around how field users actually work:

Quick Call — Voice-in, voice-out. Hold a button, speak your question, hear a short direct answer. Streaming generation so TTS begins before the full response finishes. Designed for when you're standing next to a distressed animal and have thirty seconds, not three minutes.

Detailed Chat — Text or Voice input, with image support. Attach a photo of a camel's wound or a skin condition. Get a thorough, structured response. Same model, different prompt, different temperature completely different feel.

Answers are grounded in curated camel husbandry reference material from actual veterinary literature and NRCC research, injected into the system instruction at session start. The model isn't improvising from general training data. It knows the domain because it was given the domain.



How I Used Gemma 4

Model chosen: Gemma 4 E2B

Not the 26B.
Not the 31B.
The smallest one in the family — and that was entirely intentional.

The people TharVA is built for don't have high-end phones or reliable connectivity. The rule I held myself to for the entire build was: if it doesn't load and respond reliably on a mid-range Android phone in realistic conditions, nothing else matters.

The E2B — 2.3 billion effective parameters, running on as little as 4 GB of RAM, is the only model in the Gemma 4 family that makes that possible while still being genuinely capable. I have set the context length to 4096 tokens which shaped all the technical decisions I have made.

The entire inference stack runs on-device through the flutter_gemma package, wrapping Google AI Edge's LiteRT-LM runtime.

  • No cloud API.
  • No data leaving the phone.
  • No signal required.
  • For a community where privacy matters and internet is genuinely unreliable.

Offline-first wasn't a feature preference, it was the baseline.


TharVA's Application Architecture

TharVA's Architecture


Multimodal is no longer a premium feature

Ears (<|audio|>) — Voice input bypasses device-level speech recognition entirely. I record audio as a raw WAV file (PCM 16kHz, 16-bit, mono) and pass the bytes directly to the model. This removed the requirement to pre-install language packs through obscure settings menus that field users would never find. Unexpectedly, the E2B handled local Hindi accents and regional speech patterns from around Bikaner better than device-level ASR did. Voice input that understands your accent is voice input people will actually use.

Eyes (<|image|>) — Users can photograph a wound, a skin condition, or an animal's posture and include that in their question. I capped image support at one image per turn — a deliberate product decision, not a temporary limitation. Allowing multiple images per turn caused context overflow failures mid-conversation that were impossible to handle gracefully in the field. One image per turn gives stable, predictable behavior under real conditions.

Brain (<|think|> + system prompt) — Quick Call and Detailed Chat use the same weights but entirely different system prompts and temperatures. Quick Call prompts bias heavily toward short, direct outputs with lower sampling temperature. Detailed Chat allows longer, structured responses. The model adapts its behavior completely based on what the prompt asks. same brain, different mode.

Mouth / Vocal (streaming TTS) — I use generateChatResponseAsync() to feed tokens into text-to-speech as they arrive. The user starts hearing the response before generation finishes. Without streaming, you wait for full generation then wait for TTS. With streaming, those processes overlap. The perceived latency difference in Quick Call is the difference between an app that feels usable and one that feels broken.

Grounded knowledge (context injection) — Curated camel husbandry reference text is loaded into the system instruction at session start, truncated to a fixed character budget. Every per-turn input is kept lean, a language reminder, an optional location/battery prefix, and the actual question. The knowledge base is in context from the start without consuming fresh tokens on every turn. This was forced by the 4,096-token on-device context limit, which is the real constraint that shaped almost every other technical decision.

Multilingual behavior — Any language or mode change triggers a full session reset: close the inference session, rebuild the system prompt with fresh language reminders, start fresh. Without hard resets, KV cache state bleeds between contexts, the wrong script, the wrong tone, the wrong response length in ways that undermine trust in the app entirely.

The hardest engineering in this project was completely unglamorous: a download recovery system that detects partial model files and restarts cleanly, a runtime compatibility fix for a silent mismatch between the LiteRT-LM version and the updated Hugging Face artifact format, and a turn cap that forces session rotation before context overflow causes silent failures mid-conversation.

None of that shows up in a demo. All of it determines whether the app actually works in a field in Rajasthan.

Code

https://github.com/daathwi/TharVA

The Raika community have kept camels alive in the Thar Desert for centuries. They don't need an AI to tell them what they already know. What TharVA tries to do is make the knowledge that exists in community memory and veterinary literature reachable at the moment when someone needs it with no signal, in Hindi, with one hand free.

That's a narrow goal. I think it's the right one.