Home Docs Blog Product Contact

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