<?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: Devansh Sharma</title>
    <description>The latest articles on DEV Community by Devansh Sharma (@devansh_sharma_ds).</description>
    <link>https://dev.to/devansh_sharma_ds</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%2F3478309%2Fb6ad8e17-8f65-4b04-b6ce-7945fb006bd8.png</url>
      <title>DEV Community: Devansh Sharma</title>
      <link>https://dev.to/devansh_sharma_ds</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/devansh_sharma_ds"/>
    <language>en</language>
    <item>
      <title>I’m Building a Real “Jarvis” in Python — Here’s What’s Working (and What’s Not)</title>
      <dc:creator>Devansh Sharma</dc:creator>
      <pubDate>Fri, 01 May 2026 06:58:29 +0000</pubDate>
      <link>https://dev.to/devansh_sharma_ds/im-building-a-real-jarvis-in-python-heres-whats-working-and-whats-not-3a99</link>
      <guid>https://dev.to/devansh_sharma_ds/im-building-a-real-jarvis-in-python-heres-whats-working-and-whats-not-3a99</guid>
      <description>&lt;p&gt;Most AI tools today are just chat interfaces.&lt;/p&gt;

&lt;p&gt;You open them → type → get a response → close them.&lt;/p&gt;

&lt;p&gt;That’s not an assistant.&lt;/p&gt;

&lt;p&gt;So I started building VISAR Edge — a system-level AI assistant that’s always present, not something you have to “open.”&lt;/p&gt;




&lt;p&gt;🧠 The Core Idea&lt;/p&gt;

&lt;p&gt;Instead of:&lt;/p&gt;

&lt;p&gt;«User → Prompt → Response»&lt;/p&gt;

&lt;p&gt;I’m building:&lt;/p&gt;

&lt;p&gt;«Environment → Context → AI → Action»&lt;/p&gt;




&lt;p&gt;⚙️ Current Architecture&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Python (core system)&lt;/li&gt;
&lt;li&gt;PySide6 (UI layer experiments)&lt;/li&gt;
&lt;li&gt;SpeechRecognition (voice input)&lt;/li&gt;
&lt;li&gt;Gemini API (LLM)&lt;/li&gt;
&lt;li&gt;System hooks (clipboard monitoring, active window tracking)&lt;/li&gt;
&lt;li&gt;Chroma Vector DB,many more...&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;🚀 What It Can Do (So Far)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Floating UI overlay (works across apps)&lt;/li&gt;
&lt;li&gt;Voice-triggered interactions&lt;/li&gt;
&lt;li&gt;Clipboard-aware responses&lt;/li&gt;
&lt;li&gt;Modular feature system (plug-and-play architecture)&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;⚠️ What’s Harder Than Expected&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Real-Time Context Awareness&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Capturing meaningful context without overwhelming the system is tricky.&lt;/p&gt;

&lt;p&gt;Too little → useless assistant&lt;br&gt;
Too much → performance nightmare&lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;Latency&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Cloud APIs are powerful but slow for an “always-on” experience.&lt;/p&gt;

&lt;p&gt;This is pushing me toward:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Local models&lt;/li&gt;
&lt;li&gt;Hybrid inference (local + cloud fallback)&lt;/li&gt;
&lt;/ul&gt;




&lt;ol&gt;
&lt;li&gt;System Design &amp;gt; AI&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Big realization:&lt;/p&gt;

&lt;p&gt;«This is more of a systems engineering problem than an AI problem.»&lt;/p&gt;

&lt;p&gt;Managing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;State&lt;/li&gt;
&lt;li&gt;Memory&lt;/li&gt;
&lt;li&gt;Context flow&lt;/li&gt;
&lt;li&gt;Event triggers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;…is harder than calling an LLM.&lt;/p&gt;




&lt;p&gt;🧩 What I’m Exploring Next&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Local LLM integration (7B–13B range)&lt;/li&gt;
&lt;li&gt;Vector memory systems&lt;/li&gt;
&lt;li&gt;Event-driven architecture&lt;/li&gt;
&lt;li&gt;Background processing optimization&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;❓ Where I Need Feedback&lt;/p&gt;

&lt;p&gt;If you’ve built anything similar, I’d love your thoughts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Is Python a bad long-term choice for this?&lt;/li&gt;
&lt;li&gt;Best way to handle continuous context streams?&lt;/li&gt;
&lt;li&gt;How would you design memory for this kind of system?&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;🔗 Full Project Context&lt;/p&gt;

&lt;p&gt;I’ve documented the vision, UI, and direction here:&lt;br&gt;
👉 &lt;a href="https://www.linkedin.com/in/devanshsharma987" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/devanshsharma987&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;💬 Final Thought&lt;/p&gt;

&lt;p&gt;Everyone is building smarter chatbots.&lt;/p&gt;

&lt;p&gt;I’m trying to build something you don’t have to think about using.&lt;/p&gt;

&lt;p&gt;If this fails, it’ll fail by aiming too high — not too low.&lt;/p&gt;

&lt;p&gt;Would appreciate honest feedback.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>python</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
