π Open Web UI - DXMatrix v1.0.1 β CPU-only Windows Native Build
β Support My Work
If you found this project useful, consider buying me a coffee to fuel more DXMatrix drops and open-source magic!

https://buymeacoffee.com/dxmatrix
Your support keeps this project thriving π
π A lightweight, CPU-only, Windows 11 native build of Open WebUI, reimagined for DXMatrix-style workflows.
This is a zero-dependency, offline-first fork of Open WebUI designed for:
- π₯οΈ Native Windows 11 execution
- π§© CPU-only inference (no CUDA/GPU required)
- β No Docker / No WSL / No Linux
- β Ollama or LM Studio local model support
- 𧬠Enhanced UI/UX for fast desktop agent dev
π Download the latest ZIP release here
- Windows 11
- Node.js 18+
- Python 3.10+
- PowerShell 7+
π― Run everything in one go!
./start-both-servers.bat
This script will:
β
Launch the backend with Uvicorn
β
Start the frontend (SvelteKit / Vite)
β
Open two terminals so you can monitor both
Once both servers are running, visit:
arduino
Copy
Edit
http://localhost:3000
π‘ This is the easiest way to get started β no Docker, no WSL, just native speed and control.
π§° Manual Setup (Optional)
powershell
Copy
Edit
# Extract the ZIP
cd .\DXMatrix-Win11-1.0.1_CPU
# Create & activate Python virtual env
python -m venv venv
.\venv\Scripts\Activate.ps1
# Install Python backend dependencies
pip install -r backend\requirements.txt
# Start backend
cd backend
uvicorn main:app --host 127.0.0.1 --port 8000 --reload
Then, open a new terminal for frontend:
powershell
Copy
Edit
# From root folder
npm install
npm run dev
Access the UI: http://localhost:3000
π§ͺ Features (Compared to Upstream)
Feature DXMatrix Edition β
Runs natively on Windows β
CPU-only (no GPU / CUDA) β
No Docker, no WSL β
Local Ollama / LM Studio support β
Offline-first β
Dev-focused tweaks (DXMatrix-ready) β
π Credit
This fork is based on the brilliant Open WebUI project by @tjbck. All core functionality is preserved β this build simply retools the experience for Windows-native, no-dependency power users.
π§ Author
Made with π by @kizashix
π https://matrixlogiclabs.com
π© ammar@ag38.me
Let's make AI personal, fast, and hacker-friendly again β‘
python
---