v3.0.0 LIVE
Home Return to the main page
Docs Menu Guides & API reference
Blog Latest news & tech articles
Product Explore features & editions
Contact Get in touch with support

Ollama Integration

Ollama enables fully local AI model execution within OmniIDE. Run coding models on your own hardware with zero cloud dependency and complete privacy.

Setup

  1. Install Ollama from ollama.ai
  2. Pull a coding model: ollama pull codellama:13b
  3. Start the Ollama server: ollama serve
  4. Configure OmniIDE to use Ollama

Recommended Models

ModelSizeBest For
codellama:7b3.8 GBFast coding on modest hardware
codellama:13b7.3 GBBalance of quality and speed
deepseek-coder:6.7b3.8 GBExcellent code generation

Configuration

{
  "omni.ollama.enabled": true,
  "omni.ollama.endpoint": "http://localhost:11434",
  "omni.ollama.model": "codellama:13b"
}

Related