Skip to content

GPT-OSS 120B

OpenAI’s open 120B-parameter model in a mixture-of-experts architecture (only ~5B active per token), served with native MXFP4 quantization. Strong reasoning and a 128K-token window — the largest context in Norlen’s text catalog.

idgpt-oss-120b
TypeChat / text
Context128K tokens
Available onStarter, Standard, Pro
  • Tasks that require step-by-step reasoning and more depth
  • Long documents and conversations (up to 128K context)
  • General-purpose assistants with top-tier quality

For short, fast responses, prefer Gemma 4 12B. For code, Qwen3 Coder.

resp = client.chat.completions.create(
model="gpt-oss-120b",
messages=[{"role": "user", "content": "Explain step by step why the sky is blue."}],
)
print(resp.choices[0].message.content)

Full parameters in Chat completions.