Back to all tools
Ollama logo

Ollama

Run LLMs locally — Llama, Mistral, Gemma, and more with one command.

0Open Source
LLM Platforms
Share:XLinkedInWhatsApp

Overview

Ollama lets you run large language models locally on your laptop or server with a single command, providing an OpenAI-compatible API for easy integration.

Available Models

— may change as new versions release
ModelContextBest ForCost Tier
llama3.3128KBest all-round open model, general tasksFree
deepseek-r1128KReasoning, math, logic with chain-of-thoughtFree
qwen2.5-coder128KCode generation and completionFree
mistral32KFast, lightweight general assistantFree
gemma3128KGoogle-tuned, efficient on consumer hardwareFree
phi416KSmall but capable, great on CPU/low VRAMFree
nomic-embed-text8KLocal text embeddings for RAG pipelinesFree

Key Features

  • One-command model download and run
  • OpenAI-compatible REST API on localhost:11434
  • Supports Llama 3, Mistral, Gemma, CodeLlama, Phi-3, and 100+ models
  • GPU acceleration (NVIDIA, AMD, Apple Silicon)
  • Model library with community-contributed models
  • Modelfiles for custom model configurations

Real-World Workflows

Run a private AI assistant with no cloud costs

  1. 1Install Ollama: curl -fsSL https://ollama.com/install.sh | sh
  2. 2Pull a model: ollama pull llama3
  3. 3Start chatting: ollama run llama3
  4. 4Use the local API at http://localhost:11434 from any app

Local AI for coding with Continue IDE extension

  1. 1Pull a code model: ollama pull codellama or ollama pull deepseek-coder
  2. 2Install Continue extension in VS Code
  3. 3Point Continue to Ollama in config.json
  4. 4Get private, offline code completions and chat

Getting Started

# Install (macOS/Linux)
curl -fsSL https://ollama.com/install.sh | sh

# Pull and run a model
ollama pull llama3
ollama run llama3

# Use the OpenAI-compatible API
curl http://localhost:11434/v1/chat/completions \
  -d '{"model":"llama3","messages":[{"role":"user","content":"Hi"}]}'

Compare Alternatives

See how Ollama stacks up against similar tools.