Back to Models

gpt-oss-120B (low)

OpenAI
24/ 57

Intelligence Score

Intelligence

24

#77 of 210 (top 37%)

Speed

272 tok/s

#9 of 148

Price

$0.26

per M tokens

#38 cheapest of 144

Context Window

131K

tokens

Latency: 1ms (#28)

Score Breakdown

Quality Score42%
Speed Score43%
Cost Score97%

Use This Model

Claude Code

claude --model gpt-oss-120b-low

API (cURL)

curl https://api.openai.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -d '{
    "model": "gpt-oss-120b-low",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Vercel AI SDK

import { generateText } from "ai";
import { openai } from "@ai-sdk/openai";

const { text } = await generateText({
  model: openai("gpt-oss-120b-low"),
  prompt: "Hello",
});
Back to Models