<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Amol </title>
    <description>The latest articles on DEV Community by Amol  (@amolbhandari).</description>
    <link>https://dev.to/amolbhandari</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1488856%2F95519900-c5a1-435d-9e45-54e8e3322d11.jpeg</url>
      <title>DEV Community: Amol </title>
      <link>https://dev.to/amolbhandari</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/amolbhandari"/>
    <language>en</language>
    <item>
      <title>Fetch - scan your dog, then chat, plan, and hear their story</title>
      <dc:creator>Amol </dc:creator>
      <pubDate>Sun, 16 Aug 2026 10:30:00 +0000</pubDate>
      <link>https://dev.to/amolbhandari/fetch-scan-your-dog-then-chat-plan-and-hear-their-story-2dpk</link>
      <guid>https://dev.to/amolbhandari/fetch-scan-your-dog-then-chat-plan-and-hear-their-story-2dpk</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for &lt;a href="https://dev.to/challenges/weekend-2026-08-13"&gt;Weekend Challenge: Dog Days Edition&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;Fetch is an AI dog companion that starts with a single photo and turns it into a small toolkit for looking after your dog.&lt;/p&gt;

&lt;p&gt;You upload a photo, and Fetch identifies the most likely breed along with temperament, size, energy level, and a few care tips. From there, everything stays connected to that same dog:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A chat assistant that already knows the breed, so the advice you get is specific to your dog instead of generic. After a scan it also suggests breed-specific questions about grooming, feeding, exercise, environment, training, and health.&lt;/li&gt;
&lt;li&gt;A one-tap care plan covering feeding, grooming, exercise, environment, training, and vet care, which you can read in the app, download as a PDF, or print.&lt;/li&gt;
&lt;li&gt;A storybook that writes a short story starring your dog and reads it aloud in a natural voice.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The idea was to make something that feels less like four separate tools and more like one companion that actually remembers your dog across the whole app. I wanted a new dog owner to be able to point their camera at their pup and immediately have somewhere to ask questions and get a plan.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;Live app: &lt;a href="https://fetch-dog-ai.vercel.app/" rel="noopener noreferrer"&gt;https://fetch-dog-ai.vercel.app/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Try it by uploading a clear photo of a dog on the Scan tab, then move through Ask Fetch, Care Plan, and Storybook. The storybook narration plays right in the browser.&lt;/p&gt;

&lt;h2&gt;
  
  
  Code
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/amolbhandari52/fetch-dog-ai" rel="noopener noreferrer"&gt;https://github.com/amolbhandari52/fetch-dog-ai&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How I Built It
&lt;/h2&gt;

&lt;p&gt;The frontend is a single HTML file with plain JavaScript and CSS. No framework, no build step, so it loads fast and works the same on a phone as on a laptop. The scanned dog's profile is held in a small shared state object, which is what lets the chat, care plan, and storybook all stay aware of the same dog.&lt;/p&gt;

&lt;p&gt;All the AI calls go through serverless functions on Vercel so that the API keys stay on the server and never reach the browser. There are two functions: one for Google Gemini and one for ElevenLabs.&lt;/p&gt;

&lt;p&gt;A couple of decisions I am happy with:&lt;/p&gt;

&lt;p&gt;Rather than hard-code a Gemini model name, the function asks the API which models the key can use and picks a current one. I ran into a model being retired mid-build, so I made it self-correct instead of breaking. It also retries with backoff and falls back to another model when Gemini returns a temporary high-demand error, which kept the care plan and storybook reliable during testing.&lt;/p&gt;

&lt;p&gt;For structured output like the breed profile and the care plan, I use Gemini's JSON response mode so the app can render the results directly instead of parsing loose text.&lt;/p&gt;

&lt;p&gt;The storybook narration is generated per page and streamed back as audio. The ElevenLabs function auto-selects an available voice on the account, so it works without me hard-coding a voice ID.&lt;/p&gt;

&lt;p&gt;Best Use of Google AI - Gemini handles four separate jobs: vision breed identification, the breed-aware chat, the structured care plan, and the story generation, all through one endpoint.&lt;/p&gt;

&lt;p&gt;Best Use of ElevenLabs - the storybook narration is powered by ElevenLabs text to speech, which is what turns the generated story into something you actually listen to.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>weekendchallenge</category>
      <category>googleai</category>
      <category>elevenlabs</category>
    </item>
  </channel>
</rss>
