Back to Models

gpt-oss-120B (high)

OpenAI
33/ 57

Intelligence Score

Intelligence

33

#44 of 210 (top 21%)

Speed

262 tok/s

#10 of 148

Price

$0.26

per M tokens

#37 cheapest of 144

Context Window

131K

tokens

Latency: 1ms (#30)

Score Breakdown

Quality Score58%
Speed Score42%
Cost Score97%

Use This Model

Claude Code

claude --model gpt-oss-120b

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",
    "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"),
  prompt: "Hello",
});
Back to Models