it's free*.ai

Ollama Cloud

The same models and commands as local Ollama, but running on someone else’s GPU.

Ollama Cloud is the same model names and client you already use locally, pointed at someone else’s GPU. ollama run gpt-oss:120b-cloud after ollama signin, or call api.ollama.com/v1 with a key.

Nineteen models on the live list, including DeepSeek V4, MiniMax M3, GLM 5.x and Kimi K3. The free slice is monthly starter credits on the starter models, one concurrent request — session and weekly caps are gone. Switching from local is a host change.

Free models
19
Max context
1M
Free tier
Monthly starter credits
Requirement
Email account, no card

Endpoint

Base URLhttps://api.ollama.com/v1
Env varOLLAMA_API_KEY
Rate limitMonthly starter credits, 1 concurrent request

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://api.ollama.com/v1',
  apiKey: process.env.OLLAMA_API_KEY
})

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

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

Worth knowing

Models you get for free19