it's free*.ai

vLLM

vLLM は本番が実際に使うサービングエンジンです:PagedAttention、継続バッチング、localhost:8000/v1 のOpenAI互換サーバー。GPUは自分で用意します。

vLLM は本番が実際に使うサービングエンジンです:PagedAttention、継続バッチング、localhost:8000/v1 のOpenAI互換サーバー。GPUは自分で用意します。

`vllm serve Qwen/Qwen3-8B` の1発で完了。CUDA か ROCm。MacではMLXに手を伸ばしましょう。クォータもキーもなく、何もマシンの外に出ません。

最大コンテキスト
Set with --max-model-len
無料プラン
無制限・プライベート
条件
不要 — アカウントなし

エンドポイント

ベースURLhttp://localhost:8000/v1
レート制限None — it is your machine

コード例

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)

知っておくべきこと

無料で利用できるモデル5