<?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: Nushanth yadav</title>
    <description>The latest articles on DEV Community by Nushanth yadav (@nushanth_yadav_eb9542f21f).</description>
    <link>https://dev.to/nushanth_yadav_eb9542f21f</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%2F4085092%2Fb3aa2c3f-c1e0-4d30-8735-19fdf85aef08.jpg</url>
      <title>DEV Community: Nushanth yadav</title>
      <link>https://dev.to/nushanth_yadav_eb9542f21f</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nushanth_yadav_eb9542f21f"/>
    <language>en</language>
    <item>
      <title>Empowering Local Small Businesses with a Gen AI Review Assistant.</title>
      <dc:creator>Nushanth yadav</dc:creator>
      <pubDate>Wed, 19 Aug 2026 13:34:21 +0000</pubDate>
      <link>https://dev.to/nushanth_yadav_eb9542f21f/empowering-local-small-businesses-with-a-gen-ai-review-assistant-9fj</link>
      <guid>https://dev.to/nushanth_yadav_eb9542f21f/empowering-local-small-businesses-with-a-gen-ai-review-assistant-9fj</guid>
      <description>&lt;p&gt;In a rapidly growing city like Tirupati, local small businesses are adapting to online platforms. Walk into any neighborhood biryani restaurant or local motorcycle gear shop, and you'll meet hardworking owners who provide excellent service. However, online reputation management remains a major hurdle. &lt;/p&gt;

&lt;p&gt;For my Google Gen AI Academy "Meet the Builders" project, I built a text-based AI solution to help local vendors communicate professionally with their customers.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Local Problem
&lt;/h2&gt;

&lt;p&gt;When a customer leaves a review on a delivery app or Google Maps, the business owner often struggles to reply. Language barriers or simply not knowing the "corporate PR tone" prevents them from resolving customer complaints—like a delayed order of Schezwan chicken fried rice—or thanking regulars properly.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: LocalBiz Voice
&lt;/h2&gt;

&lt;p&gt;I designed a lightweight, text-only AI assistant using the &lt;strong&gt;Gemini 3.5 Flash&lt;/strong&gt; API via Google AI Studio. &lt;/p&gt;

&lt;p&gt;The concept is simple. The shop owner provides two pieces of text:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The customer's review.&lt;/li&gt;
&lt;li&gt;A rough, casual thought on how they want to reply.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The AI takes those raw thoughts and transforms them into a polished, professional response in both English and Telugu.&lt;/p&gt;

&lt;h2&gt;
  
  
  Prototyping in Google AI Studio
&lt;/h2&gt;

&lt;p&gt;Building this required zero complex coding upfront. I used Google AI Studio's Chat Prompt feature to set strict system instructions, ensuring the AI adopted a polite, empathetic persona suitable for customer service.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;My System Instructions:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You are a professional public relations assistant for local small businesses. The user will provide a 'Customer Review' and their 'Rough Reply'. Generate a polite, professional response in English and Telugu.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Testing the Prompt:&lt;/strong&gt;&lt;br&gt;
I simulated a scenario where a customer complained about a late and overly spicy food order. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The shop owner's input:&lt;/strong&gt; "sorry man, rain caused traffic. will make it less spicy next time."&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Gemini instantly understood the intent and expanded it into a beautifully crafted apology that protects the restaurant's reputation.&lt;/p&gt;

&lt;p&gt;*&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqr0ygjugo5jl2fe9wz83.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqr0ygjugo5jl2fe9wz83.png" alt=" " width="800" height="729"&gt;&lt;/a&gt;*&lt;/p&gt;
&lt;h2&gt;
  
  
  The Code
&lt;/h2&gt;

&lt;p&gt;Because this is entirely text-based, it is fast to run and uses the free tier. Here is the Python code generated by AI Studio:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;google.generativeai&lt;/span&gt; &lt;span class="k"&gt;as&lt;/span&gt; &lt;span class="n"&gt;genai&lt;/span&gt;

&lt;span class="n"&gt;genai&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;configure&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;api_key&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;YOUR_API_KEY&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;model&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;genai&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;GenerativeModel&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;model_name&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;gemini-3.5-flash&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
                              &lt;span class="n"&gt;system_instruction&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;You are a professional public relations assistant for local small businesses. The user will provide a &lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;Customer Review&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt; and their &lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;Rough Reply&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;. Generate a polite, professional response in English and Telugu.&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="n"&gt;user_input&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"""&lt;/span&gt;&lt;span class="s"&gt;
Customer Review: &lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;The schezwan chicken fried rice was way too spicy and the delivery took almost an hour.&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;
Rough Reply: &lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;sorry man, rain caused traffic. will make it less spicy next time.&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;
&lt;/span&gt;&lt;span class="sh"&gt;"""&lt;/span&gt;

&lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;model&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;generate_content&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;user_input&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The Impact
&lt;/h2&gt;

&lt;p&gt;By leveraging text-only generative AI, we can bridge the digital communication gap for local businesses. This tool removes the friction of language barriers, helping small vendors build better relationships with their community, one review at a time.&lt;/p&gt;

</description>
      <category>googlecloud</category>
      <category>python</category>
      <category>ai</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
