<?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: KRISTOPHER Acuff</title>
    <description>The latest articles on DEV Community by KRISTOPHER Acuff (@kristopher_acuff_2453a829).</description>
    <link>https://dev.to/kristopher_acuff_2453a829</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%2F2780479%2Fb712d9c9-f789-4ce9-b3f5-b28e64e97238.png</url>
      <title>DEV Community: KRISTOPHER Acuff</title>
      <link>https://dev.to/kristopher_acuff_2453a829</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kristopher_acuff_2453a829"/>
    <language>en</language>
    <item>
      <title>Local AI Chat Studio – Local-First Multi-Provider Chatbot</title>
      <dc:creator>KRISTOPHER Acuff</dc:creator>
      <pubDate>Mon, 02 Mar 2026 08:30:16 +0000</pubDate>
      <link>https://dev.to/kristopher_acuff_2453a829/local-ai-chat-studio-local-first-multi-provider-chatbot-4lgo</link>
      <guid>https://dev.to/kristopher_acuff_2453a829/local-ai-chat-studio-local-first-multi-provider-chatbot-4lgo</guid>
      <description>&lt;p&gt;&lt;em&gt;This is was originally meant to be a submission for the &lt;a href="https://dev.to/challenges/weekend-2026-02-28"&gt;DEV Weekend Challenge: Community&lt;/a&gt;&lt;/em&gt; But this is my first Dev post and also was my first coding challenge I tried enter and I missed the deadline by 30 minutes because I thought it was EST lol, I learnt the hard way to pay attention deadline times lol I gotta laugh at my dumb mistakes lol. &lt;/p&gt;




&lt;h2&gt;
  
  
  The Community
&lt;/h2&gt;

&lt;p&gt;This project is built for hobbyists, students, and anyone on a tight budget who wants to experiment with AI chatbots. It’s beginner-friendly and designed for people who want to test different AI models for free, explore prompts, tweak parameters, and track token usage—all without setting up complex frameworks.&lt;/p&gt;




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

&lt;p&gt;I built a &lt;strong&gt;local-first AI chat UI&lt;/strong&gt; that works with &lt;strong&gt;OpenRouter and Venice AI&lt;/strong&gt;. Users can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Add, edit, and toggle system prompts.&lt;/li&gt;
&lt;li&gt;Keep conversation history stored locally.&lt;/li&gt;
&lt;li&gt;Track tokens and context window usage.&lt;/li&gt;
&lt;li&gt;Switch themes (light/dark) with a sliding drawer UI.&lt;/li&gt;
&lt;li&gt;Adjust generation parameters like temperature and max tokens.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The interface is intentionally simple—no frontend frameworks, no build steps, just a single HTML file for the frontend and a FastAPI backend (&lt;code&gt;main.py&lt;/code&gt;) for handling API requests.&lt;/p&gt;




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

&lt;p&gt;Here’s a link to the repo and live demo instructions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GitHub Repo: &lt;a href="https://github.com/emmyacuff9-sys/Local-AI-Chat-Studio/tree/main" rel="noopener noreferrer"&gt;Local AI Chat Studio&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Run locally by following the &lt;strong&gt;Installation &amp;amp; Running the Code&lt;/strong&gt; instructions in the README.md.&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Note: You’ll need an OpenRouter API key (&lt;a href="https://openrouter.ai" rel="noopener noreferrer"&gt;Sign up here&lt;/a&gt;) and/or a Venice AI API key (&lt;a href="https://www.venice.ai" rel="noopener noreferrer"&gt;Sign up here&lt;/a&gt;) to use the chatbot.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Code
&lt;/h2&gt;

&lt;p&gt;You can view, fork or git clone the project directly from GitHub: here is the command I used to git clone the project and run the code after I cloned it to test it. It worked and the code run without any errors when I tested it. &lt;/p&gt;

&lt;p&gt;Git clone it using this command&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;git clone https://github.com/emmyacuff9-sys/Local-AI-Chat-Studio.git&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;After you clone the repo run this command to run the code.&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;python3 main.py&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;




&lt;p&gt;&lt;a href="https://github.com/emmyacuff9-sys/Local-AI-Chat-Studio/tree/main" rel="noopener noreferrer"&gt;Local AI Chat Studio Repository&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The repo includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;index.html&lt;/code&gt; – Chat UI, prompts, token tracking, theme toggle&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;main.py&lt;/code&gt; – FastAPI backend to proxy API requests and handle chat&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;requirements.txt&lt;/code&gt; – Dependencies for running the backend&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  How I Built It
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; Pure HTML, CSS (with variables), minimal JavaScript (all in one file for simplicity)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backend:&lt;/strong&gt; FastAPI for routing, CORS handling, and proxying API calls to OpenRouter and Venice AI&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;APIs:&lt;/strong&gt; OpenRouter and Venice AI for AI completions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Extras:&lt;/strong&gt; LocalStorage for saving chat history, system prompts, and API keys&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I used AI (Gemini) to help write and debug this projects code, which helped me focus on learning prompt engineering and improving AI-assisted development.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why This Project
&lt;/h2&gt;

&lt;p&gt;I wanted a &lt;strong&gt;lightweight, beginner-friendly way&lt;/strong&gt; to experiment with AI chatbots without getting overwhelmed by thousands of lines of code. Beginners can run it locally, tweak parameters, add prompts, and learn about token usage and multi-provider AI without spending money. Advanced coders can extend the project easily.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>weekendchallenge</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
