<?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: Roshni Kumari</title>
    <description>The latest articles on DEV Community by Roshni Kumari (@rsn601kri).</description>
    <link>https://dev.to/rsn601kri</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1045120%2Fb161a1f6-40e4-4613-b544-3ca179939a04.jpg</url>
      <title>DEV Community: Roshni Kumari</title>
      <link>https://dev.to/rsn601kri</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rsn601kri"/>
    <language>en</language>
    <item>
      <title>AgentForge – Autonomous AI Voice Agents for Financial Business Automation</title>
      <dc:creator>Roshni Kumari</dc:creator>
      <pubDate>Tue, 22 Jul 2025 16:55:49 +0000</pubDate>
      <link>https://dev.to/rsn601kri/agentforge-autonomous-ai-voice-agents-for-financial-business-automation-b7</link>
      <guid>https://dev.to/rsn601kri/agentforge-autonomous-ai-voice-agents-for-financial-business-automation-b7</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/assemblyai-2025-07-16"&gt;AssemblyAI Voice Agents Challenge&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

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

&lt;p&gt;AgentForge is a powerful platform to create, manage, and scale autonomous voice-enabled AI agents tailored for intelligent commerce automation. Designed for Business Automation, leverages AssemblyAI’s Universal-Streaming technology to empower agents with real-time voice interaction capabilities in complex business workflows.&lt;/p&gt;

&lt;p&gt;These agents can autonomously handle:&lt;/p&gt;

&lt;p&gt;Customer inquiries about products, invoices, and payments&lt;/p&gt;

&lt;p&gt;Payroll processing and employee payouts&lt;/p&gt;

&lt;p&gt;Bounty funding and task management&lt;/p&gt;

&lt;p&gt;Scheduling and revenue sharing across teams&lt;/p&gt;

&lt;p&gt;Whether it's automated sales calls, customer support, or real-time lead qualification, it transforms human interactions into intelligent, scalable financial processes powered by speech.&lt;/p&gt;

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

&lt;p&gt;Live Demo Link: &lt;a href="https://agentforge-eta.vercel.app/" rel="noopener noreferrer"&gt;https://agentforge-eta.vercel.app/&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  GitHub Repository
&lt;/h2&gt;

&lt;p&gt;Link: &lt;a href="https://github.com/RSN601KRI/Agent-Forge" rel="noopener noreferrer"&gt;https://github.com/RSN601KRI/Agent-Forge&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Technical Implementation &amp;amp; AssemblyAI Integration
&lt;/h2&gt;

&lt;p&gt;AgentForge is built to integrate AssemblyAI’s Universal-Streaming API for real-time transcription and voice processing. &lt;/p&gt;

&lt;p&gt;🎙️AssemblyAI Universal Streaming&lt;br&gt;
We connected AssemblyAI’s WebSocket streaming API directly with our frontend using LiveKit as the orchestration framework. &lt;/p&gt;

&lt;p&gt;The transcription stream powers:&lt;/p&gt;

&lt;p&gt;Live intent parsing for payment, invoice and scheduling workflows&lt;/p&gt;

&lt;p&gt;Voice-command execution via Payman SDK (e.g., “Generate invoice for Adnan for $1200”)&lt;/p&gt;

&lt;p&gt;Real-time feedback and conversational agent interactions.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;// Example: AssemblyAI WebSocket Streaming Setup (client-side)&lt;br&gt;
const socket = new WebSocket('wss://api.assemblyai.com/v2/realtime/ws?sample_rate=16000');&lt;br&gt;
socket.onmessage = (message) =&amp;gt; {&lt;br&gt;
  const data = JSON.parse(message.data);&lt;br&gt;
  if (data.text) {&lt;br&gt;
    handleVoiceCommand(data.text); // Intent parser + command trigger&lt;br&gt;
  }&lt;br&gt;
};&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;We integrated the Payman SDK to allow our voice agents to:&lt;/p&gt;

&lt;p&gt;📤 Trigger real payments, bounties, and revenue splits&lt;/p&gt;

&lt;p&gt;📄 Auto-generate and process invoices based on voice cues&lt;/p&gt;

&lt;p&gt;👥 Execute payroll with smart contract support&lt;/p&gt;

&lt;p&gt;These financial workflows are securely handled using programmable Web3 infrastructure, triggered by real-time voice interactions.&lt;/p&gt;

&lt;h2&gt;
  
  
  🛠️ Tech Stack
&lt;/h2&gt;

&lt;p&gt;Frontend: React + Vite + TypeScript&lt;/p&gt;

&lt;p&gt;UI: ShadCN/UI + TailwindCSS&lt;/p&gt;

&lt;p&gt;Voice Stream: AssemblyAI Universal-Streaming API&lt;/p&gt;

&lt;p&gt;Backend/Agent Logic: Node.js + Payman SDK&lt;/p&gt;

&lt;p&gt;Deployment: Vercel&lt;/p&gt;

&lt;p&gt;Streaming Orchestration: LiveKit&lt;/p&gt;

&lt;h2&gt;
  
  
  Highlights
&lt;/h2&gt;

&lt;p&gt;✅ Built a practical B2B/B2C voice automation tool that actually executes transactions&lt;/p&gt;

&lt;p&gt;🔄 Supported multi-step workflows with live voice interaction&lt;/p&gt;

&lt;p&gt;🔒 Ensured secure and programmable backend actions through smart contract integration&lt;/p&gt;

&lt;p&gt;🔊 Used AssemblyAI to bring real-time transcription accuracy to finance-based domain voice commands&lt;/p&gt;

&lt;h2&gt;
  
  
  Team Submissions:
&lt;/h2&gt;

&lt;p&gt;👩‍💻Developed by &lt;a class="mentioned-user" href="https://dev.to/rsn601kri"&gt;@rsn601kri&lt;/a&gt; (Roshni Kumari)&lt;/p&gt;

&lt;p&gt;Thanks to AssemblyAI for powering the future of intelligent voice-enabled agents!&lt;/p&gt;

&lt;p&gt;Let’s build a future where agents think, transact and speak — in real-time.&lt;/p&gt;

&lt;p&gt;Thanks for participating!&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>assemblyaichallenge</category>
      <category>ai</category>
      <category>api</category>
    </item>
    <item>
      <title>🌟 #DEVImpact2023 Reflections</title>
      <dc:creator>Roshni Kumari</dc:creator>
      <pubDate>Sat, 16 Dec 2023 01:45:21 +0000</pubDate>
      <link>https://dev.to/rsn601kri/devimpact2023-reflections-54hi</link>
      <guid>https://dev.to/rsn601kri/devimpact2023-reflections-54hi</guid>
      <description>&lt;h3&gt;
  
  
  Proud Moments
&lt;/h3&gt;

&lt;h3&gt;
  
  
  DEV Contributions
&lt;/h3&gt;

&lt;h3&gt;
  
  
  Brilliant Fails
&lt;/h3&gt;

&lt;h3&gt;
  
  
  Celebrate the Numbers
&lt;/h3&gt;

&lt;h3&gt;
  
  
  Shoutouts
&lt;/h3&gt;

&lt;h3&gt;
  
  
  Future Goals
&lt;/h3&gt;

&lt;h3&gt;
  
  
  What Does DEV Means to You?
&lt;/h3&gt;

</description>
      <category>devimpact2023</category>
    </item>
  </channel>
</rss>
