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
Install Ollama
Download and install Ollama from ollama.com. Once installed, Ollama starts a local server automatically at
http://localhost:11434.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:Verify Ollama is running
Confirm the model downloaded successfully:You should see your pulled models listed with their sizes.
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.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:Update the endpoint URL
Replace
http://localhost:11434 with your remote server’s address, for example:Make sure the remote Ollama instance is reachable from your machine and that any firewall rules allow traffic on port
11434.Recommended models for coding
| Model | Approx. size | Best for |
|---|---|---|
qwen2.5-coder:7b | ~4 GB | Fast, everyday coding assistance |
qwen2.5-coder:32b | ~20 GB | Complex reasoning and large refactors |
deepseek-coder-v2:16b | ~10 GB | Balanced speed and code quality |
codellama:13b | ~8 GB | Code completion and generation |
