This is the fastest path to a working LumaKit install on Windows.
Install Ollama first and make sure it is running locally.
In PowerShell:
ollama listIf that works, LumaKit can talk to your local Ollama endpoint.
Choose the model you want LumaKit to use and make sure your Ollama setup can serve it.
If you want the strongest first-run impression, use a strong tool-capable model. Small models can chat, but they are more brittle with multi-step tool loops.
git clone https://github.com/patmakesapps/LumaKit.git
cd LumaKitpy -m pip install -r requirements.txt
playwright install chromium
py -m pip install -e .copy .env.example .envSet at least:
OLLAMA_MODEL="your-model-here"Optional but common:
OLLAMA_FALLBACK_MODEL="your-fallback-model"
LUMAKIT_WEB_PORT="7865"If you prefer, you can leave OLLAMA_MODEL blank and choose your primary model from the web UI on first launch. The app will block chat until a model is selected.
lumakit openThat should:
- start the backend if it is not already running
- reuse it if it is already running
- open the web UI in your browser
If no model is configured in .env or app settings yet, LumaKit opens into a first-run setup state and asks you to choose one in Settings before chatting.
lumakit shortcut installWhen native shortcut creation succeeds, that writes:
- a Desktop shortcut
- a Start Menu shortcut
Both launch lumakit open.
lumakit status
lumakit stop
lumakit servelumakit statusshows whether the backend is already runninglumakit stopstops the backendlumakit serveruns in the foreground for debugging