<?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: Adithya Krishnan</title>
    <description>The latest articles on DEV Community by Adithya Krishnan (@fal3n4ngel).</description>
    <link>https://dev.to/fal3n4ngel</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%2F953016%2Fba80688e-eb65-4a86-8ba6-cbbad311b90e.jpg</url>
      <title>DEV Community: Adithya Krishnan</title>
      <link>https://dev.to/fal3n4ngel</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/fal3n4ngel"/>
    <language>en</language>
    <item>
      <title>I Stopped Putting AI Inside My App — I Made AI a Client of My API</title>
      <dc:creator>Adithya Krishnan</dc:creator>
      <pubDate>Sun, 06 Sep 2026 04:58:11 +0000</pubDate>
      <link>https://dev.to/fal3n4ngel/i-stopped-putting-ai-inside-my-app-i-made-ai-a-client-of-my-api-4c51</link>
      <guid>https://dev.to/fal3n4ngel/i-stopped-putting-ai-inside-my-app-i-made-ai-a-client-of-my-api-4c51</guid>
      <description>&lt;p&gt;I wanted to build a personal dashboard that could understand my data.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Expenses. Movies. Books. Investments.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The obvious approach would have been to build an AI layer directly into the application.&lt;/p&gt;

&lt;p&gt;I decided to do the opposite.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What if AI wasn't part of the application at all?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;What if it was simply another client consuming the same API as the web application?&lt;/p&gt;

&lt;p&gt;That idea became &lt;strong&gt;Continuum&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The architecture
&lt;/h2&gt;

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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Web App
   ↓
AI Layer
   ↓
Database
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I built:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                 ┌─────────────┐
                 │   Web App   │
                 └──────┬──────┘
                        │
                        ▼
ChatGPT ──────► ┌─────────────┐
Gemini ────────►│ Continuum   │
Other Clients ─►│     API     │
                └──────┬──────┘
                       │
                       ▼
                   Database
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The API owns the actual application logic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The AI doesn't.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That means ChatGPT can create an expense, update a watchlist, or retrieve data, but it doesn't get special access to my application's internals.&lt;/p&gt;

&lt;p&gt;It's just another authenticated client.&lt;/p&gt;

&lt;h2&gt;
  
  
  What does that actually look like?
&lt;/h2&gt;

&lt;p&gt;I can tell ChatGPT:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;I spent ₹225 on petrol today.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The request goes through the same API that my web application uses.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ChatGPT
   ↓
OAuth
   ↓
Continuum API
   ↓
Authentication
   ↓
Business Logic
   ↓
Database
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The expense gets created.&lt;/p&gt;

&lt;p&gt;I can then open the dashboard and see it there.&lt;/p&gt;

&lt;p&gt;The interesting part isn't that ChatGPT can create an expense.&lt;/p&gt;

&lt;p&gt;The interesting part is that &lt;strong&gt;the AI doesn't need to know how the application works.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It only needs to know what the API allows it to do.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why build it this way?
&lt;/h2&gt;

&lt;p&gt;I wanted the AI integration to remain replaceable.&lt;/p&gt;

&lt;p&gt;If tomorrow I decide I don't want to use ChatGPT, I shouldn't have to redesign the application.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The API remains the source of truth.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Today I can have:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;             ┌── Web App
             │
             ├── ChatGPT
Continuum ───┼── Gemini
    API      │
             ├── Mobile App
             │
             └── Custom Client
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Every client interacts with the same underlying system.&lt;/p&gt;

&lt;p&gt;That also means I can build new interfaces without duplicating business logic.&lt;/p&gt;

&lt;h2&gt;
  
  
  It's not just an AI experiment
&lt;/h2&gt;

&lt;p&gt;Continuum started as a personal dashboard.&lt;/p&gt;

&lt;p&gt;It currently brings several parts of my digital life into one place:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Expense tracking&lt;/li&gt;
&lt;li&gt;Movie and TV watchlists&lt;/li&gt;
&lt;li&gt;Books&lt;/li&gt;
&lt;li&gt;Investments&lt;/li&gt;
&lt;li&gt;Personal data&lt;/li&gt;
&lt;li&gt;AI-powered interaction through the API&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal isn't to build another generic &lt;strong&gt;"AI productivity app."&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It's closer to a &lt;strong&gt;personal data layer that different interfaces can consume.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Security
&lt;/h2&gt;

&lt;p&gt;Since this deals with personal data, I didn't want the API to simply expose everything.&lt;/p&gt;

&lt;p&gt;The architecture uses authentication and authorization to make sure clients only have access to the data they're supposed to access.&lt;/p&gt;

&lt;p&gt;Sensitive data is encrypted server-side before being persisted.&lt;/p&gt;

&lt;p&gt;The important principle is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;AI gets access to capabilities, not direct access to the database.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;For example, an AI client can call:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nf"&gt;createExpense&lt;/span&gt;&lt;span class="p"&gt;(...)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;rather than getting a database connection and being told:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"Good luck."
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That distinction becomes increasingly important as AI agents get more capable.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why not just build everything around an AI agent?
&lt;/h2&gt;

&lt;p&gt;Because I don't think the agent should own the application.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;An AI model is replaceable.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Your data isn't.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Your business logic shouldn't depend on a particular model either.&lt;/p&gt;

&lt;p&gt;If the application API is designed properly, the AI becomes another interface on top of it.&lt;/p&gt;

&lt;p&gt;That gives you a cleaner separation:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                    Interfaces
                        │
        ┌───────────────┼────────────────┐
        │               │                │
      Web App         ChatGPT          Gemini
        │               │                │
        └───────────────┼────────────────┘
                        ▼
                   API Layer
                        │
                 Business Logic
                        │
                     Data
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The part I'm still experimenting with
&lt;/h2&gt;

&lt;p&gt;This architecture raises some interesting questions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How much functionality should an AI client actually be allowed to access?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Should AI clients get exactly the same API permissions as normal applications?&lt;/p&gt;

&lt;p&gt;How should destructive operations be handled?&lt;/p&gt;

&lt;p&gt;Should sensitive operations require explicit confirmation?&lt;/p&gt;

&lt;p&gt;And eventually:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Does an API designed for humans also make a good API for agents?&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I don't have all the answers yet.&lt;/p&gt;

&lt;p&gt;That's actually one of the reasons I built this.&lt;/p&gt;

&lt;p&gt;I wanted to have a real application where I could experiment with these ideas instead of just talking about them.&lt;/p&gt;

&lt;h2&gt;
  
  
  It's open source
&lt;/h2&gt;

&lt;p&gt;Continuum is self-hostable and the source is available on GitHub.&lt;/p&gt;

&lt;p&gt;If you're interested in API-first applications, self-hosting, AI integrations, or building your own personal data layer, I'd be interested in hearing what you'd change about the architecture.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/fal3n-4ngel/Continuum-Home" rel="noopener noreferrer"&gt;https://github.com/fal3n-4ngel/Continuum-Home&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live demo:&lt;/strong&gt; &lt;a href="https://continuum-home.vercel.app/" rel="noopener noreferrer"&gt;https://continuum-home.vercel.app/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you build something similar, I'd also love to see how you're approaching the &lt;strong&gt;AI/API boundary&lt;/strong&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>api</category>
      <category>architecture</category>
      <category>backend</category>
    </item>
    <item>
      <title>Introducing Soyo: Stream On Your Own , Effortlessly 🎬🎧</title>
      <dc:creator>Adithya Krishnan</dc:creator>
      <pubDate>Thu, 24 Oct 2024 00:52:13 +0000</pubDate>
      <link>https://dev.to/fal3n4ngel/introducing-soyo-stream-on-your-own-effortlessly-2eh</link>
      <guid>https://dev.to/fal3n4ngel/introducing-soyo-stream-on-your-own-effortlessly-2eh</guid>
      <description>&lt;p&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.amazonaws.com%2Fuploads%2Farticles%2Fwuylm7jzq4lmrr4vq87c.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.amazonaws.com%2Fuploads%2Farticles%2Fwuylm7jzq4lmrr4vq87c.png" alt=" " width="800" height="460"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Ever wanted to stream your personal media collection without relying on third-party services? Meet Soyo, a simple solution to stream your media over your local network, right from your drive!&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 Key Features:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Built with Next.js for a smooth, responsive experience.&lt;/li&gt;
&lt;li&gt;Styled with Tailwind CSS for a modern, clean UI.&lt;/li&gt;
&lt;li&gt;Streams from your local drive (default: F:/) and accessible on any device connected to the same network.&lt;/li&gt;
&lt;li&gt;No more fussing with external servers or cloud solutions—Soyo brings your favorite media to your fingertips!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;📂 Check it out &lt;a href="https://github.com/fal3n-4ngel/SOYO" rel="noopener noreferrer"&gt;fal3n-4ngel/SOYO&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Screenshots
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fuser-attachments%2Fassets%2F1d6fa291-4c01-4f1c-969a-7ad48e23afd7" 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%2Fgithub.com%2Fuser-attachments%2Fassets%2F1d6fa291-4c01-4f1c-969a-7ad48e23afd7" alt="Mobile view" width="760" height="435"&gt;&lt;/a&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%2Fgithub.com%2Fuser-attachments%2Fassets%2F71ded133-e511-4163-880a-6ba4ee883d36" 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%2Fgithub.com%2Fuser-attachments%2Fassets%2F71ded133-e511-4163-880a-6ba4ee883d36" alt="Mobile view" width="760" height="436"&gt;&lt;/a&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%2Fgithub.com%2Fuser-attachments%2Fassets%2F295fdda8-6a8b-4a76-b819-a387ca6beb20" 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%2Fgithub.com%2Fuser-attachments%2Fassets%2F295fdda8-6a8b-4a76-b819-a387ca6beb20" alt="Laptop view" width="2559" height="1469"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
