Ollama

Ollama

Run LLMs Locally

Description

< #Large Language Models #Local Deployment #Offline AI #Model Management #Developer Tools #Open Source

Ollama runs large language models directly on your own laptop, with no API bill attached. Metered token APIs easily reach hundreds of dollars a month under real use, while a local model costs nothing per call and keeps the data off anyone else's servers.

It wraps up the tedious parts — downloading weights, quantization formats, memory allocation, serving — so one command after installation brings a model up and ready to talk. It also exposes an OpenAI-style local endpoint, so coding tools such as Claude Code, Codex and Copilot, or your own programs, can point at it.

Features



One command to run a model: `ollama run ` downloads the weights and drops you into a conversation, with no inference framework or dependency setup of your own.

A broad model library: the official library carries Llama, DeepSeek, Qwen, Gemma, gpt-oss and many other open models, each in several parameter sizes and quantizations to match your hardware.

Installs everywhere: one-line installers for macOS, Windows and Linux, plus the official `ollama/ollama` Docker image.

Plugs into coding tools: local models can back Claude Code, Codex, OpenCode, Copilot and similar assistants, trading the API invoice for your own compute.

Official SDKs: ollama-python and ollama-js make calling a local model from your own code a few lines of work.

Data stays on the machine: inference runs locally, so conversations and code are never uploaded to a third-party service — which matters for sensitive material.

Custom models: take an existing model and pin your own system prompt, parameters and template, then save it as a reusable model entry.

Open source project: the source is hosted on GitHub under the MIT license, so developers can review the implementation, contribute, or customize it for their own needs.