Compare commits

...
Author SHA1 Message Date
Bruce MacDonald d9ac9664ea no ollama serve command 2026-05-27 14:21:45 -07:00
Bruce MacDonald 3812e8820e docs: omp usage instructions 2026-05-27 14:12:54 -07:00
3 changed files with 49 additions and 0 deletions

No files matched your search

+1
View File
@@ -129,6 +129,7 @@
"/integrations/opencode",
"/integrations/droid",
"/integrations/goose",
"/integrations/omp",
"/integrations/pi",
"/integrations/pool"
]
+1
View File
@@ -15,6 +15,7 @@ Coding assistants that can read, modify, and execute code in your projects.
- [OpenCode](/integrations/opencode)
- [Droid](/integrations/droid)
- [Goose](/integrations/goose)
- [OMP](/integrations/omp)
- [Pi](/integrations/pi)
- [Pool](/integrations/pool)
+47
View File
@@ -0,0 +1,47 @@
---
title: OMP
---
OMP is an AI coding agent with IDE integration that runs in your terminal.
## Install
Install [OMP](https://omp.sh):
```bash
curl -fsSL https://omp.sh/install | sh
```
On Windows, install from PowerShell:
```powershell
irm https://omp.sh/install.ps1 | iex
```
## Usage with Ollama
OMP discovers Ollama automatically when the Ollama server is running locally.
Start Ollama if it is not already running, then pull a model:
```bash
ollama pull qwen3.5
```
Then launch OMP:
```bash
omp
```
Use `/model` in OMP and select the Ollama model, such as `ollama/qwen3.5` and set it as the default.
To launch OMP with a specific Ollama model:
```bash
omp --model ollama/qwen3.5
```
<Note>For coding agents, larger context windows work best. See [Context length](/context-length) for more information.</Note>
For more OMP model configuration options, see the [custom models documentation](https://omp.sh/docs/custom-models).