Prerequisites
Before connecting Luminy to Ollama, you need to:- Install Ollama — download the installer from ollama.com and follow the platform-specific setup steps.
- Pull at least one model — open a terminal and run
ollama pull <model-name>(see recommended models below).
Setting up Ollama with Luminy
1
Install Ollama
Download and install Ollama from ollama.com. Once installed, Ollama starts a local server automatically at
http://localhost:11434.2
Pull a coding model
Open a terminal and pull a model. For everyday coding tasks, For a larger, more capable alternative:
qwen2.5-coder:7b is the recommended starting point:3
Verify Ollama is running
Confirm the model downloaded successfully:You should see your pulled models listed with their sizes.
4
Open Luminy Settings
In Luminy, go to Settings → Ollama. The default endpoint is pre-filled as
http://localhost:11434 — leave it unchanged unless you are running Ollama on a different host or port.5
Select your model in the chat composer
Click the model selector dropdown in the chat input area. Your locally pulled models appear automatically — select one and start chatting. No restart required.
Model names and the Ollama prefix
Ollama models use their bare model name in Luminy — you do not need to type a provider prefix. For example, the model you pulled asqwen2.5-coder:7b appears as qwen2.5-coder:7b in the selector, not ollama:qwen2.5-coder:7b.
Luminy detects which models are Ollama-hosted automatically by querying the local Ollama server at startup and whenever a new model is selected.
Custom Ollama endpoint
If you are running Ollama on a remote server (for example, a GPU workstation on your local network or a cloud VM), you can point Luminy at it:1
Open Settings → Ollama
Navigate to the Ollama section in Luminy Settings.
2
Update the endpoint URL
Replace
http://localhost:11434 with your remote server’s address, for example:3
Save
Click Save. Luminy will connect to the new endpoint and refresh the model list.
Make sure the remote Ollama instance is reachable from your machine and that any firewall rules allow traffic on port
11434.