it's free*.ai

Ollama

One command and the model runs on your machine. No limits, no quotas.

Ollama is the local default: one CLI, a model library, an OpenAI-compatible server on localhost:11434/v1. `ollama pull llama3.3` once, then call it like any other provider.

macOS, Linux, Windows. No quota. The request never leaves the machine unless you opt into Cloud. If you want a GUI instead, LM Studio; if you want production batching, vLLM.

Max context
Whatever your RAM allows
Free tier
Unlimited and private
Requirement
Nothing — no account

Endpoint

Base URLhttp://localhost:11434/v1
Rate limitNone — it is your machine

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'http://localhost:11434/v1',
  apiKey: 'not-needed'
})

const response = await client.chat.completions.create({
  model: 'llama3.3',
  messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})

console.log(response.choices[0].message.content)

Worth knowing

Models you get for free5