<?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: talos13</title>
    <description>The latest articles on DEV Community by talos13 (@talos1313).</description>
    <link>https://dev.to/talos1313</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%2F4122550%2F111e2ae5-39da-4cca-9b29-5fed9748349e.png</url>
      <title>DEV Community: talos13</title>
      <link>https://dev.to/talos1313</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/talos1313"/>
    <language>en</language>
    <item>
      <title>I built a zero-backend, browser-only alternative to Open WebUI and heavy LLM stacks</title>
      <dc:creator>talos13</dc:creator>
      <pubDate>Sat, 12 Sep 2026 19:47:15 +0000</pubDate>
      <link>https://dev.to/talos1313/i-built-a-zero-backend-browser-only-alternative-to-open-webui-and-heavy-llm-stacks-5el7</link>
      <guid>https://dev.to/talos1313/i-built-a-zero-backend-browser-only-alternative-to-open-webui-and-heavy-llm-stacks-5el7</guid>
      <description>&lt;p&gt;Most open-source LLM chat interfaces follow the exact same blueprint: a heavy Python or Node.js backend, a Postgres/Redis database, and a multi-container Docker Compose setup just to pass a JSON prompt to an API.&lt;/p&gt;

&lt;p&gt;If you just want a clean, responsive workspace to inspect token counts, test system prompts, or chat with your local Ollama instance, deploying 2GB+ of Docker containers is massive overkill.&lt;/p&gt;

&lt;p&gt;That’s why I built &lt;strong&gt;Lab&lt;/strong&gt; - a lightweight, completely serverless, local-first web environment for LLMs.&lt;/p&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%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7d7k1iwgzatgs1raqghh.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7d7k1iwgzatgs1raqghh.png" alt="Lab Interface" width="800" height="388"&gt;&lt;/a&gt;&lt;/p&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%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fssj6o8b2nzukz0byo9xy.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fssj6o8b2nzukz0byo9xy.png" alt="Lab Interface" width="800" height="388"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  💡 Core Architecture
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Zero Backend&lt;/strong&gt;: Everything executes entirely on the client side in your browser.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Local Storage via IndexedDB&lt;/strong&gt;: Chats, model configs, system prompts, and API keys are persisted locally in your browser using Dexie.js. Nothing ever touches my servers.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Surgical Context Controls&lt;/strong&gt;:

&lt;ul&gt;
&lt;li&gt;Exact token usage breakdown per message: &lt;em&gt;User vs. Assistant vs. Tool vs. System&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Message Pinning&lt;/strong&gt;: Lock essential system instructions or context anchors in place to prevent them from being pruned when managing context windows.&lt;/li&gt;
&lt;li&gt;Collapsible code blocks and raw JSON payload inspectors.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-Provider Support&lt;/strong&gt;: Seamlessly switch between Anthropic, OpenAI, OpenRouter, Google Gemini, and local models via Ollama.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Offline &amp;amp; PWA Ready&lt;/strong&gt;: Installable as a native desktop or mobile PWA with background service worker caching.&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  🛠️ Working with Local Models (Ollama)
&lt;/h3&gt;

&lt;p&gt;Since Lab runs entirely in your browser over HTTPS, connecting to a local Ollama instance (&lt;code&gt;http://localhost:11434&lt;/code&gt;) requires allowing browser cross-origin requests.&lt;/p&gt;

&lt;p&gt;Simply set the environment variable on your Ollama host:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Linux (systemd)&lt;/span&gt;
&lt;span class="nb"&gt;sudo &lt;/span&gt;systemctl edit ollama.service

&lt;span class="c"&gt;# Add:&lt;/span&gt;
&lt;span class="o"&gt;[&lt;/span&gt;Service]
&lt;span class="nv"&gt;Environment&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"OLLAMA_ORIGINS=*"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Restart Ollama, and Lab connects instantly directly from your browser tab.&lt;/p&gt;




&lt;h3&gt;
  
  
  🔗 Links &amp;amp; Code
&lt;/h3&gt;

&lt;p&gt;The project is fully open-source under the AGPL-v3.0 license:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Web App (Live Demo)&lt;/strong&gt;: &lt;a href="https://labstudio.tech" rel="noopener noreferrer"&gt;https://labstudio.tech&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub Repository&lt;/strong&gt;: &lt;a href="https://github.com/Talos-popcorn/lab" rel="noopener noreferrer"&gt;https://github.com/Talos-popcorn/lab&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Feedback, bug reports, and PRs are more than welcome!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>webdev</category>
      <category>llm</category>
    </item>
  </channel>
</rss>
