<?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: Helly Dungrani</title>
    <description>The latest articles on DEV Community by Helly Dungrani (@helly_dungrani_656b0f17db).</description>
    <link>https://dev.to/helly_dungrani_656b0f17db</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%2F4079077%2F502a19c5-c074-4c76-8cac-46a0e89ab081.png</url>
      <title>DEV Community: Helly Dungrani</title>
      <link>https://dev.to/helly_dungrani_656b0f17db</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/helly_dungrani_656b0f17db"/>
    <language>en</language>
    <item>
      <title>My 9-Day Journey Building a Real-Time AI Voice Agent | VoiceForBharat</title>
      <dc:creator>Helly Dungrani</dc:creator>
      <pubDate>Sat, 15 Aug 2026 14:18:53 +0000</pubDate>
      <link>https://dev.to/helly_dungrani_656b0f17db/my-9-day-journey-building-a-real-time-ai-voice-agent-voiceforbharat-2169</link>
      <guid>https://dev.to/helly_dungrani_656b0f17db/my-9-day-journey-building-a-real-time-ai-voice-agent-voiceforbharat-2169</guid>
      <description>&lt;h2&gt;
  
  
  10 Days of AI Voice Agents — VoiceForBharat Edition
&lt;/h2&gt;

&lt;p&gt;Over the past 9 days, I built and improved a &lt;strong&gt;real-time AI voice agent&lt;/strong&gt; as part of the &lt;strong&gt;10 Days of AI Voice Agents — VoiceForBharat Edition&lt;/strong&gt; challenge.&lt;/p&gt;

&lt;p&gt;The journey showed me that building a voice agent is much more than connecting Speech-to-Text and Text-to-Speech.&lt;/p&gt;

&lt;p&gt;A useful voice agent needs &lt;strong&gt;memory, tools, guardrails, human handoff, analytics, and reliable real-time communication&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For Text-to-Speech, I used &lt;strong&gt;Murf Falcon&lt;/strong&gt;, Murf's fast TTS API.&lt;/p&gt;




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

&lt;p&gt;My voice agent can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🎙️ Have real-time voice conversations&lt;/li&gt;
&lt;li&gt;🧠 Remember useful user information&lt;/li&gt;
&lt;li&gt;🛡️ Follow conversational guardrails&lt;/li&gt;
&lt;li&gt;🔧 Use external tools&lt;/li&gt;
&lt;li&gt;📞 Make outbound calls&lt;/li&gt;
&lt;li&gt;👨‍💼 Request human assistance&lt;/li&gt;
&lt;li&gt;📊 Track call analytics and outcomes&lt;/li&gt;
&lt;li&gt;🔄 Support human/specialist handoff workflows&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🏗️ How It Works
&lt;/h2&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                     USER
                       │
                       ▼
                🎤 Voice Input
                       │
                       ▼
                 Deepgram STT
                       │
                       ▼
                🤖 AI AGENT
                /     |      \
               /      |       \
          Memory    Tools   Guardrails
               \      |       /
                \     |      /
                       ▼
                     LLM
                       │
                       ▼
                Murf Falcon
                       │
                       ▼
                🔊 Voice Output
                       │
                       ▼
                      USER

             ⚡ LiveKit
      Real-time communication.   
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;🗓️ My 9-Day Journey&lt;br&gt;
Day 1 — Voice Agent&lt;br&gt;
I started by building a basic voice agent that could listen to the user and respond through voice.&lt;br&gt;
Day 2 — Personality &amp;amp; Guardrails&lt;br&gt;
I gave the agent a defined role and behavior while adding guardrails to keep conversations within the intended scope.&lt;br&gt;
Day 3 — Frontend&lt;br&gt;
I built the frontend interface and worked with different conversation states such as connecting, listening, speaking, and call ended.&lt;br&gt;
Day 4 — Memory&lt;br&gt;
I added memory so the agent could retain useful information about users and provide more context-aware responses.&lt;br&gt;
Day 5 — Tools&lt;br&gt;
I added tool calling so the agent could use external information instead of relying only on the language model.&lt;br&gt;
Day 6 — Outbound Calls&lt;br&gt;
I worked on outbound calling and telephony integration, allowing the agent to initiate calls.&lt;br&gt;
Day 7 — Human Handoff&lt;br&gt;
I implemented a human-handoff workflow so the agent could recognize situations where human assistance was required.&lt;br&gt;
Day 8 — Call Analytics&lt;br&gt;
I built an analytics dashboard to monitor total calls, call duration, completed calls, human handoffs, and call outcomes.&lt;br&gt;
Day 9 — Specialist Handoff&lt;br&gt;
I worked with specialist/handoff workflows so conversations could be passed to the appropriate specialist when needed.&lt;/p&gt;

&lt;p&gt;🛠️ Technologies Used&lt;br&gt;
Murf Falcon — Text-to-Speech&lt;br&gt;
Deepgram — Speech-to-Text&lt;br&gt;
LiveKit — Real-time communication&lt;br&gt;
LLM — Reasoning and responses&lt;br&gt;
Python — Backend agent&lt;br&gt;
Next.js — Frontend and dashboard&lt;br&gt;
SQLite — Call analytics&lt;/p&gt;

&lt;p&gt;🧠 From Voice Bot to Voice Agent&lt;br&gt;
One of my biggest learnings was understanding the difference between a simple voice bot and an AI agent.&lt;br&gt;
A basic voice bot can:&lt;br&gt;
User → Speech → AI → Speech → User&lt;br&gt;
But an agent can:&lt;br&gt;
User&lt;br&gt;
 ↓&lt;br&gt;
Understand&lt;br&gt;
 ↓&lt;br&gt;
Reason&lt;br&gt;
 ↓&lt;br&gt;
Remember&lt;br&gt;
 ↓&lt;br&gt;
Use Tools&lt;br&gt;
 ↓&lt;br&gt;
Take Action&lt;br&gt;
 ↓&lt;br&gt;
Ask for Human Help&lt;br&gt;
This makes the system much closer to a real AI assistant.&lt;/p&gt;

&lt;p&gt;🛠️ Challenges I Faced&lt;br&gt;
The project wasn't completely smooth.&lt;br&gt;
I faced issues with:&lt;br&gt;
LiveKit real-time connectivity&lt;br&gt;
API and environment configuration&lt;br&gt;
TTS/voice connections&lt;br&gt;
SIP and outbound calling&lt;br&gt;
Analytics API requests&lt;br&gt;
Debugging these issues helped me understand how different parts of a real-time AI system work together.&lt;br&gt;
I also learned the importance of keeping API credentials inside environment variables instead of exposing them in source code.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/Helly033/murf-ai" rel="noopener noreferrer"&gt;https://github.com/Helly033/murf-ai&lt;/a&gt;&lt;br&gt;
Linkedin: &lt;a href="https://www.linkedin.com/in/helly-dungrani-718871393?utm_source=share_via&amp;amp;utm_content=profile&amp;amp;utm_medium=member_android" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/helly-dungrani-718871393?utm_source=share_via&amp;amp;utm_content=profile&amp;amp;utm_medium=member_android&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;💡 What I Learned&lt;br&gt;
This challenge taught me that building an AI voice agent involves much more than AI models.&lt;br&gt;
It combines:&lt;br&gt;
AI + APIs + Voice + Real-Time Communication + Databases + Frontend + Debugging + Security&lt;br&gt;
Most importantly, I learned that a good AI agent should not only generate answers.&lt;br&gt;
It should be able to understand, decide, act, remember, and know when to ask for help.&lt;/p&gt;

&lt;p&gt;🙌 Final Thoughts&lt;br&gt;
The 10 Days of AI Voice Agents — VoiceForBharat Edition was a great hands-on experience.&lt;br&gt;
Building this project with Murf Falcon gave me practical experience with real-time AI voice technology, while LiveKit helped me understand the infrastructure behind interactive voice applications.&lt;br&gt;
I'm grateful to the Murf AI team for creating this challenge and giving me the opportunity to learn by building.&lt;br&gt;
A good AI agent is not just something that talks. It is a system that can understand, reason, use tools, remember context, take action, and know when to ask a human for help.&lt;/p&gt;

&lt;h1&gt;
  
  
  VoiceForBharat #MurfAI #MurfFalcon #VoiceAI #AgenticAI
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>voiceai</category>
      <category>aiagents</category>
      <category>python</category>
    </item>
  </channel>
</rss>
