<?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: VortexV7</title>
    <description>The latest articles on DEV Community by VortexV7 (@vortexv7).</description>
    <link>https://dev.to/vortexv7</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%2F1955096%2F5eb9554b-c49d-44c0-850d-eca0c8fd1274.png</url>
      <title>DEV Community: VortexV7</title>
      <link>https://dev.to/vortexv7</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vortexv7"/>
    <language>en</language>
    <item>
      <title>I Built a Desktop AI Mock Interviewer with Speech, Code Editor &amp; PDF Reports</title>
      <dc:creator>VortexV7</dc:creator>
      <pubDate>Tue, 23 Jun 2026 20:08:12 +0000</pubDate>
      <link>https://dev.to/vortexv7/i-built-a-desktop-ai-mock-interviewer-with-speech-code-editor-pdf-reports-282i</link>
      <guid>https://dev.to/vortexv7/i-built-a-desktop-ai-mock-interviewer-with-speech-code-editor-pdf-reports-282i</guid>
      <description>&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;A fully offline-capable Windows desktop app that simulates a real guided interview &lt;br&gt;
session — from topic selection to a generated PDF performance report at the end.&lt;/p&gt;

&lt;p&gt;You pick your topic (Programming, CS Fundamentals, SQL, Behavioral, etc.), set &lt;br&gt;
the difficulty, and the AI interviewer starts asking questions. You can answer &lt;br&gt;
verbally or type code in the built-in editor. When the session ends, you get a &lt;br&gt;
structured PDF with your scores, feedback, and recommended next steps.&lt;/p&gt;




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

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Layer&lt;/th&gt;
&lt;th&gt;Tech&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;UI&lt;/td&gt;
&lt;td&gt;Electron&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AI Engine&lt;/td&gt;
&lt;td&gt;Python&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Communication&lt;/td&gt;
&lt;td&gt;IPC (stdin/stdout)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Speech-to-Text&lt;/td&gt;
&lt;td&gt;Groq Whisper&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LLM&lt;/td&gt;
&lt;td&gt;LLaMA 3 via Groq API&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PDF Generation&lt;/td&gt;
&lt;td&gt;ReportLab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Packaging&lt;/td&gt;
&lt;td&gt;PyInstaller + electron-builder&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Features I'm Proud Of
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Live speech transcription&lt;/strong&gt; — answer questions out loud, Whisper handles the rest&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adaptive follow-up questions&lt;/strong&gt; — the AI reads your answer and digs deeper&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Built-in code editor&lt;/strong&gt; — for programming/DSA rounds&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Behavioural monitoring&lt;/strong&gt; — tracks focus loss, face presence via camera, and filler words&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PDF report&lt;/strong&gt; — per-question scores, structured feedback, next steps&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Why Desktop + Local-First?
&lt;/h2&gt;

&lt;p&gt;Most AI interview tools are web apps that store your data on their servers. &lt;br&gt;
I wanted something that runs entirely on your machine. You bring your own &lt;br&gt;
Groq API key — no accounts, no backend, no data leaving your PC.&lt;/p&gt;




&lt;h2&gt;
  
  
  Architecture: Electron + Python over IPC
&lt;/h2&gt;

&lt;p&gt;The trickiest part was getting Electron and Python to talk reliably. &lt;br&gt;
I went with stdin/stdout IPC — Electron spawns the Python process and &lt;br&gt;
they communicate via structured messages. It's simple, cross-process, &lt;br&gt;
and works well with PyInstaller packaging.&lt;/p&gt;




&lt;h2&gt;
  
  
  Research Background
&lt;/h2&gt;

&lt;p&gt;This started as a final-year college project and was presented as a &lt;br&gt;
research paper at &lt;strong&gt;ICRTSET-2026&lt;/strong&gt; (April 2026).&lt;/p&gt;




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

&lt;p&gt;🔗 &lt;a href="https://github.com/VortexV7/AI-Mock-Interview-Assistant" rel="noopener noreferrer"&gt;https://github.com/VortexV7/AI-Mock-Interview-Assistant&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The source is proprietary, but the README has architecture diagrams, &lt;br&gt;
screenshots, and a full breakdown of the app flow.&lt;/p&gt;

&lt;p&gt;Happy to answer questions about any of the design decisions in the comments!&lt;/p&gt;

</description>
      <category>python</category>
      <category>electron</category>
      <category>ai</category>
      <category>career</category>
    </item>
  </channel>
</rss>
