it's free*.ai

vLLM

The serving engine production runs on. PagedAttention and continuous batching, on your own GPU.

vLLM is the serving engine production actually uses: PagedAttention, continuous batching, an OpenAI-compatible server on localhost:8000/v1. You bring the GPU.

`vllm serve Qwen/Qwen3-8B` and you are done. CUDA or ROCm; on a Mac reach for MLX instead. No quota, no key, nothing leaving the machine.

Max context
Set with --max-model-len
Free tier
Unlimited and private
Requirement
Nothing — no account

Endpoint

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

Code examples

npm install openai
import OpenAI from 'openai'

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

const response = await client.chat.completions.create({
  model: 'Qwen/Qwen3-8B',
  messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})

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

Worth knowing

Models you get for free5